Skip to content

Commit

Permalink
Merge pull request #14 from z1nc0r3/release/v2.0.0
Browse files Browse the repository at this point in the history
Release/v2.0.0
  • Loading branch information
z1nc0r3 authored Nov 4, 2024
2 parents 8cf390e + 792a82e commit 831506e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
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

0 comments on commit 831506e

Please sign in to comment.