Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v2.0.0 #14

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 👤
Expand All @@ -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
2 changes: 1 addition & 1 deletion SettingsTemplate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ body:
options:
- Resolution
- File Size
- Total Bit Rate
- Total Bitrate
- FPS
- type: dropdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading