Skip to content

Commit

Permalink
docs: replace youtube-dl to yt-dlp
Browse files Browse the repository at this point in the history
  • Loading branch information
akiirui committed Sep 8, 2023
1 parent ceef6ed commit e3e055d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "mpv-handler"
version = "0.3.4"
edition = "2021"
authors = ["Akatsuki Rui <[email protected]>"]
description = "Play website videos and songs with mpv & youtube-dl"
description = "Play website videos and songs with mpv & yt-dlp"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/akiirui/mpv-handler"
Expand Down
2 changes: 1 addition & 1 deletion share/linux/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# ytdl = "/path/of/ytdl"

# Optional, Type: String
# The path of youtube-dl binary
# The path of yt-dlp binary
# Default value:
# - Linux: yt-dlp
# - Windows: yt-dlp.exe
Expand Down
2 changes: 1 addition & 1 deletion share/linux/mpv-handler.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Type=Application
Name=mpv-handler
GenericName=Multimedia player
Comment=Play website videos and songs with mpv & youtube-dl
Comment=Play website videos and songs with mpv & yt-dlp
NoDisplay=true
Icon=mpv
Exec=mpv-handler %u
Expand Down
2 changes: 1 addition & 1 deletion share/windows/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# ytdl = "C:\\path\\of\\yt-dlp.exe"

# Optional, Type: String
# The path of youtube-dl binary
# The path of yt-dlp binary
# Default value:
# - Linux: yt-dlp
# - Windows: yt-dlp.exe
Expand Down
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::path::PathBuf;

/// Config of mpv-handler
///
/// - `mpv`: mpv player binary path
/// - `ytdl`: Youtube-DL binary path
/// - `mpv`: mpv binary path
/// - `ytdl`: yt-dlp binary path
/// - `proxy: HTTP(S) proxy server address
#[derive(Debug, Deserialize)]
pub struct Config {
Expand Down

0 comments on commit e3e055d

Please sign in to comment.