App-ShellCompleter-mpv
view release on metacpan or search on metacpan
devdata/mpv.list-options.0.6.2 view on Meta::CPAN
--dump-stats String (default: ) [global]
--dvbin-card Integer (1 to 4) (default: 1)
--dvbin-file String (default: )
--dvbin-prog String (default: )
--dvbin-timeout Integer (1 to 30) (default: 30)
--dvd-angle Integer (1 to 99) (default: 1)
--dvd-device String (default: ) [file]
--dvd-speed Integer (default: 0)
--edition Choices: auto (or an integer) (0 to 8190) (default: auto)
--embeddedfonts Flag (default: yes)
--end Relative time or percent position
--field-dominance Choices: auto top bottom (default: auto)
--fixed-vo Flag (default: yes) [global]
--force-rgba-osd-rendering Flag (default: no)
--force-window Flag (default: no) [global]
--force-window-position Flag (default: no)
--fps Double (0 to any) (default: 0.000000)
--framedrop Choices: no vo decoder decoder+vo (default: vo)
--frames Choices: all (or an integer) (0 to 2147483647) (default: all)
--fs Flag (default: no)
--fs-screen Choices: all current (or an integer) (0 to 32) (default: current)
devdata/mpv.list-options.0.6.2 view on Meta::CPAN
--input-keylist Print [global] [nocfg]
--input-lirc Flag (default: yes) [global]
--input-lirc-conf String (default: ) [global]
--input-right-alt-gr Flag (default: yes) [global]
--input-terminal Flag (default: yes) [global]
--input-test Flag (default: no) [global]
--input-x11-keyboard Flag (default: yes) [global]
--keep-open Flag (default: no)
--keepaspect Flag (default: yes)
--leak-report Flag [global] [nocfg]
--length Relative time or percent position
--list-options Flag [nocfg]
--list-properties Print [global] [nocfg]
--list-protocols Print [global] [nocfg]
--load-scripts Flag (default: yes) [global]
--load-unsafe-playlists Flag (default: no)
--loop Choices: no 1 inf (or an integer) (2 to 10000) (default: no) [global]
--loop-file Choices: yes no inf (or an integer) (0 to 10000) (default: no)
--lua String list (default: ) [global] [file]
--lua-opts Key/value list (default: ) [global]
--mc Float (0 to 100) (default: -1.000000)
devdata/mpv.list-options.0.6.2 view on Meta::CPAN
--secondary-sid Choices: no auto (or an integer) (1 to 8190) (default: no)
--show-profile String (default: ) [nocfg]
--shuffle Flag (default: no) [global] [nocfg]
--sid Choices: no auto (or an integer) (1 to 8190) (default: auto)
--slang String list (default: )
--slave-broken Flag (default: no) [global]
--softvol Choices: no yes auto (default: auto)
--softvol-max Float (10 to 10000) (default: 200.000000)
--speed Double (0.01 to 100) (default: 1.000000)
--sstep Double (0 to any) (default: 0.000000)
--start Relative time or percent position
--stop-screensaver Flag (default: yes)
--stream-capture String (default: ) [file]
--stream-dump String (default: ) [file]
--stream-lavf-o Key/value list (default: )
--stretch-dvd-subs Flag (default: no)
--sub-ass Flag (default: yes)
--sub-auto Choices: no exact fuzzy all (default: exact)
--sub-clear-on-seek Flag (default: no)
--sub-codepage String (default: auto)
--sub-delay Float (default: 0.000000)
lib/App/ShellCompleter/mpv.pm view on Meta::CPAN
'dvd-speed=i' => undef, # Integer (default: 0)
'edition=s' => sub { # Choices: auto (or an integer) (0 to 8190) (default: auto)
my %args = @_;
my $word = $args{word};
combine_answers(
complete_array_elem(array=>[qw/auto/], word=>$word),
complete_int(min=>0, max=>8190, word=>$word),
);
},
'embeddedfonts!' => undef, # Flag (default: yes)
'end=s' => undef, # Relative time or percent position
'field-dominance=s' => [qw/auto top bottom/], # Choices: auto top bottom (default: auto)
'fixed-vo!' => undef, # Flag (default: yes) [global]
'force-rgba-osd-rendering!' => undef, # Flag (default: no)
'force-window!' => undef, # Flag (default: no) [global]
'force-window-position!' => undef, # Flag (default: no)
'fps=f' => _gcfloat(0), # Double (0 to any) (default: 0.000000)
'framedrop=s' => [qw/no vo decoder decoder+vo/], # Choices: no vo decoder decoder+vo (default: vo)
'frames=s' => sub { # Choices: all (or an integer) (0 to 2147483647) (default: all)
my %args = @_;
my $word = $args{word};
lib/App/ShellCompleter/mpv.pm view on Meta::CPAN
'input-keylist' => undef, # Print [global] [nocfg]
'input-lirc!' => undef, # Flag (default: yes) [global]
'input-lirc-conf=s' => undef, # String (default: ) [global]
'input-right-alt-gr!' => undef, # Flag (default: yes) [global]
'input-terminal!' => undef, # Flag (default: yes) [global]
'input-test!' => undef, # Flag (default: no) [global]
'input-x11-keyboard!' => undef, # Flag (default: yes) [global]
'keep-open!' => undef, # Flag (default: no)
'keepaspect!' => undef, # Flag (default: yes)
'leak-report!' => undef, # Flag [global] [nocfg]
'length=s' => undef, # Relative time or percent position
'list-options!' => undef, # Flag [nocfg]
'list-properties' => undef, # Print [global] [nocfg]
'list-protocols' => undef, # Print [global] [nocfg]
'load-scripts!' => undef, # Flag (default: yes) [global]
'load-unsafe-playlists!' => undef, # Flag (default: no)
'loop=s' => sub { # Choices: no 1 inf (or an integer) (2 to 10000) (default: no) [global]
my %args = @_;
my $word = $args{word};
combine_answers(
complete_array_elem(array=>[qw/no 1 inf/], word=>$word),
lib/App/ShellCompleter/mpv.pm view on Meta::CPAN
complete_array_elem(array=>[qw/no auto/], word=>$word),
complete_int(min=>1, max=>8190, word=>$word),
);
},
'slang=s' => undef, # String list (default: )
'slave-broken!' => undef, # Flag (default: no) [global]
'softvol=s' => [qw/no yes auto/], # Choices: no yes auto (default: auto)
'softvol-max' => _gcfloat(10,10000), # Float (10 to 10000) (default: 200.000000)
'speed=f' => _gcfloat(0.01,100), # Double (0.01 to 100) (default: 1.000000)
'sstep=f' => _gcfloat(0), # Double (0 to any) (default: 0.000000)
'start=s' => undef, # Relative time or percent position
'stop-screensaver!' => undef, # Flag (default: yes)
'stream-capture=s' => undef, # String (default: ) [file]
'stream-dump=s' => undef, # String (default: ) [file]
'stream-lavf-o=s' => undef, # Key/value list (default: )
'stretch-dvd-subs!' => undef, # Flag (default: no)
'sub-ass!' => undef, # Flag (default: yes)
'sub-auto=s' => [qw/no exact fuzzy all/], # Choices: no exact fuzzy all (default: exact)
'sub-clear-on-seek!' => undef, # Flag (default: no)
'sub-codepage=s' => undef, # String (default: auto)
'sub-delay=f' => undef, # Float (default: 0.000000)
( run in 0.452 second using v1.01-cache-2.11-cpan-05162d3a2b1 )