**Video Quality filtering**
Videos can now be filtered out based on their quality (Issue 11). This feature uses 4 new parameters: `lowest_resolution`, `lowest_framerate`, `lowest_definition` and `preferred_dimensions`.
The first two rely on another package (pytube) and can take quite some time (30s on average for 5 videos on my machine) to run compared to "native" parameters. I would use them only if they are absolutely necessary for your needs (that's why they are set to *null* in the template).
The last two rely directly on the YT API like previous parameters.
-`lowest_resolution`: Lowest resolution you consider acceptable. For example, if set to *1080p*, videos 720p or lower will not be added to your playlist.
-`lowest_framerate`: Lowest framerate you consider acceptable. For example, if set to *60*, 30fps videos will not be added to your playlist.
-`lowest_definition`: Lowest definition you consider acceptable. For example, if set to *HD*, SD videos will not be added to your playlist. Setting this parameter to *HD* does the same thing as setting `lowest_resolution` to *720p*, but is much faster to run.
-`preferred_dimensions`: 2D videos are regular videos and 3D videos are videos using anaglyph 3D (red-cyan videos). This parameter currently cannot search for 360° videos.
**Side note**: The names of the parameters used for title filtering have been changed to be more consistent with the other parameters.