App-ShellCompleter-mpv

 view release on metacpan or  search on metacpan

devdata/mpv.list-options.0.6.2  view on Meta::CPAN

 --saturation                     Integer (-100 to 100) (default: 1000)
 --save-position-on-quit          Flag (default: no)
 --screen                         Choices: default (or an integer) (0 to 32) (default: default)
 --screenshot-format              String (default: jpg)
 --screenshot-jpeg-baseline       Flag (default: yes)
 --screenshot-jpeg-dpi            Integer (1 to 99999) (default: 72)
 --screenshot-jpeg-optimize       Integer (0 to 100) (default: 100)
 --screenshot-jpeg-progressive    Flag (default: no)
 --screenshot-jpeg-quality        Integer (0 to 100) (default: 90)
 --screenshot-jpeg-smooth         Integer (0 to 100) (default: 0)
 --screenshot-png-compression     Integer (0 to 9) (default: 7)
 --screenshot-png-filter          Integer (0 to 5) (default: 5)
 --screenshot-template            String (default: )
 --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)

lib/App/ShellCompleter/mpv.pm  view on Meta::CPAN

            complete_int(min=>0, max=>32, word=>$word),
        );
    },
    'screenshot-format=s' => undef, #              String (default: jpg)
    'screenshot-jpeg-baseline!' => undef, #       Flag (default: yes)
    'screenshot-jpeg-dpi=i' => _gcint(1,99999), #            Integer (1 to 99999) (default: 72)
    'screenshot-jpeg-optimize=i' => _gcint(0,100), #       Integer (0 to 100) (default: 100)
    'screenshot-jpeg-progressive!' => undef, #    Flag (default: no)
    'screenshot-jpeg-quality=i' => _gcint(0,100), #        Integer (0 to 100) (default: 90)
    'screenshot-jpeg-smooth=i' => _gcint(0,100), #         Integer (0 to 100) (default: 0)
    'screenshot-png-compression=i' => _gcint(0,9), #     Integer (0 to 9) (default: 7)
    'screenshot-png-filter=i' => _gcint(0,5), #          Integer (0 to 5) (default: 5)
    'screenshot-template=s' => undef, #            String (default: )
    'secondary-sid=s' => sub { #                  Choices: no auto (or an integer) (1 to 8190) (default: no)
        my %args = @_;
        my $word = $args{word};
        combine_answers(
            complete_array_elem(array=>[qw/no auto/], word=>$word),
            complete_int(min=>1, max=>8190, word=>$word),
        );
    },
    'show-profile=s' => undef, #                   String (default: ) [nocfg]



( run in 1.157 second using v1.01-cache-2.11-cpan-df04353d9ac )