Add option and flag to pass flags to the video player
This commit is contained in:
parent
2c7e7fd5c3
commit
e10fff11e4
2 changed files with 11 additions and 4 deletions
6
.ptclirc
6
.ptclirc
|
@ -6,6 +6,10 @@
|
|||
|
||||
$config{player} = "mpv";
|
||||
|
||||
# Flags to pass the player, nothing by default
|
||||
|
||||
$config{player_flags} = "";
|
||||
|
||||
# Default instance to use.
|
||||
|
||||
$config{instance} = "https://vid.qorg11.net";
|
||||
|
@ -14,6 +18,8 @@ $config{instance} = "https://vid.qorg11.net";
|
|||
|
||||
$config{default_resolution} = 0;
|
||||
|
||||
|
||||
|
||||
# This tells perl everything's alright
|
||||
|
||||
1;
|
||||
|
|
|
@ -53,9 +53,10 @@ our $counter = 0;
|
|||
# Process arguments
|
||||
|
||||
GetOptions(
|
||||
"instance=s" => \$config{instance},
|
||||
"resolution=i" => \$config{default_resolution},
|
||||
"player=s" => \$config{player}
|
||||
"instance=s" => \$config{instance},
|
||||
"resolution=i" => \$config{default_resolution},
|
||||
"player=s" => \$config{player},
|
||||
"player-flags=s" => \$config{player_flags}
|
||||
);
|
||||
# Main program
|
||||
while (1) {
|
||||
|
@ -200,7 +201,7 @@ sub play_video($) {
|
|||
print "Video author: $author\n";
|
||||
print "Resolution: $resolution\n";
|
||||
|
||||
`$config{player} $url`;
|
||||
`$config{player} $config{player_flags} $url`;
|
||||
}
|
||||
|
||||
sub help_prompt() {
|
||||
|
|
Loading…
Add table
Reference in a new issue