diff --git a/README.md b/README.md index d0c2f28..c901374 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# AnyVideo Downloader v1.1.1 🔻 +# AnyVideo Downloader v2.0.0 🔻 ![](https://github.com/user-attachments/assets/18a6cff4-ee86-4322-a72d-c6a02628503a) @@ -14,8 +14,15 @@ ## Features 🪄 - Supports 1000+ websites -- Video quality selector +- Download videos in various formats - Audio-only support +- Custom download location +- Preferred video/audio format selection +- Custom sorting of the result list + - Sort by **Resolution**_(default)_ + - Sort by **File size** _(NB: The file size won't be available for some videos)_ + - Sort by **Total bitrate** + - Sort by **FPS** _(NB: The FPS won't be available for some videos)_ ## Usage 👤 @@ -27,6 +34,4 @@ ## Upcoming features 💚 --[] Custom Download location --[] Adding Download parameter configurations --[] Exclude file formats from the result list +-[] Simple mode for quick downloads - This will allow users to download video/audio with the best quality available without any additional settings diff --git a/SettingsTemplate.yaml b/SettingsTemplate.yaml index 8cb1b47..40b2248 100644 --- a/SettingsTemplate.yaml +++ b/SettingsTemplate.yaml @@ -14,7 +14,7 @@ body: options: - Resolution - File Size - - Total Bit Rate + - Total Bitrate - FPS - type: dropdown attributes: diff --git a/plugin.json b/plugin.json index 66ea4bd..9bbdd3d 100644 --- a/plugin.json +++ b/plugin.json @@ -4,7 +4,7 @@ "Name": "AnyVideo Downloader", "Description": "Plugin for downloading videos from YouTube, Facebook, Twitter, Instagram, and many other websites.", "Author": "z1nc0r3", - "Version": "1.1.1", + "Version": "2.0.0", "Language": "python", "Website": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin", "IcoPath": "Images\\app.png", diff --git a/plugin/main.py b/plugin/main.py index f64fd37..c151c26 100644 --- a/plugin/main.py +++ b/plugin/main.py @@ -181,7 +181,7 @@ def query(query: str) -> ResultResponse: formats = sort_by_resolution(formats) elif sort == "File Size": formats = sort_by_size(formats) - elif sort == "Total Bit Rate": + elif sort == "Total Bitrate": formats = sort_by_tbr(formats) elif sort == "FPS": formats = sort_by_fps(formats)