**Video Duration Filtering**
Videos can now be filtered out based on their duration!
To do so, use the `allowed_durations` parameter by specifying a lower and upper limit for video durations (see the [ReadMe](README.md) for more information).
**Important note**: Since the YT Data API unfortunately doesn't provide any information about the type of content ("normal" videos, shorts, livestreams...), the code to detect if a video is a short or not (enabled by the `keep_shorts` parameter) relies entirely on its duration (if the video is shorter than 65 seconds, it is flagged as a short). This leads to unwanted results if the `keep_shorts` parameter is set to *True* and the lower bound of the `allowed_durations` parameter is less than this 65 seconds threshold. Namely, all videos shorter than 65 seconds will be discarded, whatever that lower bound is. When (if ?) an alternative way of identifying shorts becomes available, it will be implemented to avoid such problems.