App-ShellCompleter-mpv

 view release on metacpan or  search on metacpan

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

Options:

 --ad                             String (default: -spdif:*)
 --ad-lavc-ac3drc                 Float (0 to 2) (default: 1.000000)
 --ad-lavc-downmix                Flag (default: yes)
 --ad-lavc-o                      Key/value list (default: )
 --ad-lavc-threads                Integer (1 to 16) (default: 1)
 --ad-spdif-dtshd                 Flag (default: no)
 --af*                            Object settings list (default: )
 --af-defaults                    Object settings list (default: )
 --aid                            Choices: no auto (or an integer) (1 to 8190) (default: auto)
 --alang                          String list (default: )
 --ao                             Object settings list (default: )
 --ao-defaults                    Object settings list (default: )
 --ass-force-style                String list (default: )
 --ass-hinting                    Choices: none light normal native (default: none)
 --ass-line-spacing               Float (-1000 to 1000) (default: 0.000000)

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

 --demuxer-rawvideo-codec         String (default: )
 --demuxer-rawvideo-format        FourCC
 --demuxer-rawvideo-fps           Float (0.001 to 1000) (default: 25.000000)
 --demuxer-rawvideo-h             Integer (1 to 8192) (default: 720)
 --demuxer-rawvideo-mp-format     Image format
 --demuxer-rawvideo-size          Integer (1 to 268435456) (default: 0)
 --demuxer-rawvideo-w             Integer (1 to 8192) (default: 1280)
 --demuxer-readahead-bytes        Integer (0 to 419430400) (default: 0)
 --demuxer-readahead-packets      Integer (0 to 16000) (default: 0)
 --demuxer-readahead-secs         Double (0 to any) (default: 0.200000)
 --demuxer-thread                 Flag (default: yes)
 --display-fps                    Double (0 to any) (default: 0.000000)
 --dtshd                          Flag (default: no)
 --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)

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

 --vd                             String (default: )
 --vd-lavc-bitexact               Flag (default: no)
 --vd-lavc-check-hw-profile       Flag (default: yes)
 --vd-lavc-fast                   Flag (default: no)
 --vd-lavc-framedrop              Choices: none default nonref bidir nonkey all (default: nonref)
 --vd-lavc-o                      Key/value list (default: )
 --vd-lavc-show-all               Flag (default: no)
 --vd-lavc-skipframe              Choices: none default nonref bidir nonkey all (default: default)
 --vd-lavc-skipidct               Choices: none default nonref bidir nonkey all (default: default)
 --vd-lavc-skiploopfilter         Choices: none default nonref bidir nonkey all (default: default)
 --vd-lavc-threads                Integer (0 to 16) (default: 0)
 --version                        Print [global] [nocfg]
 --vf*                            Object settings list (default: )
 --vf-defaults                    Object settings list (default: )
 --vid                            Choices: no auto (or an integer) (1 to 8190) (default: auto)
 --video-align-x                  Float (-1 to 1) (default: 0.000000)
 --video-align-y                  Float (-1 to 1) (default: 0.000000)
 --video-aspect                   Float (-1 to 10) (default: -1.000000)
 --video-pan-x                    Float (-3 to 3) (default: 0.000000)
 --video-pan-y                    Float (-3 to 3) (default: 0.000000)
 --video-rotate                   Choices: no (or an integer) (0 to 359) (default: 0)

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

    complete_file(word=>$args{word}, filter=>'d');
};

my $MAX_INT = 2_147_483_647;

our %scargs = (
    'ad=s' => undef,                    # String (default: -spdif:*)
    'ad-lavc-ac3drc=f' => _gcfloat(0,2), # Float (0 to 2) (default: 1.000000)
    'ad-lavc-downmix!' => undef,        # Flag (default: yes)
    'ad-lavc-o=s' => undef,             # Key/value list (default: )
    'ad-lavc-threads=i' => _gcint(1,16), # Integer (1 to 16) (default: 1)
    'ad-spdif-dtshd!' => undef,         # Flag (default: no)
    'af=s' => undef,                    # Object settings list (default: )
    'af-defaults=s' => undef,           # Object settings list (default: )
    'aid=s' => sub {                    # Choices: no auto (or an integer) (1 to 8190) (default: auto)
        my %args = @_;
        my $word = $args{word};
        combine_anwers(
            complete_array_elem(array=>['no','auto'], word=>$word),
            complete_int(word=>$word, min=>1, max=>8190),
        );

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

    'demuxer-rawvideo-codec=s' => undef, #        String (default: )
    'demuxer-rawvideo-format=s' => undef, #       FourCC
    'demuxer-rawvideo-fps=f' => _gcfloat(0.001,1000), #          Float (0.001 to 1000) (default: 25.000000)
    'demuxer-rawvideo-h=i' => _gcint(1,8192), #            Integer (1 to 8192) (default: 720)
    'demuxer-rawvideo-mp-format=s' => undef, #    Image format
    'demuxer-rawvideo-size=i' => _gcint(1,268435456), #         Integer (1 to 268435456) (default: 0)
    'demuxer-rawvideo-w=i' => _gcint(1,8192), #            Integer (1 to 8192) (default: 1280)
    'demuxer-readahead-bytes=i' => _gcint(0,419430400), #       Integer (0 to 419430400) (default: 0)
    'demuxer-readahead-packets=i' => _gcint(0,16000), #     Integer (0 to 16000) (default: 0)
    'demuxer-readahead-secs=f' => _gcfloat(0), #        Double (0 to any) (default: 0.200000)
    'demuxer-thread!' => undef, #                Flag (default: yes)
    'display-fps=f' => _gcfloat(0), #                   Double (0 to any) (default: 0.000000)
    'dtshd!' => undef, #                         Flag (default: no)
    'dump-stats=s' => undef, #                    String (default: ) [global]
    'dvbin-card=i' => _gcint(1,4), #                      Integer (1 to 4) (default: 1)
    'dvbin-file=s' => undef, #                      String (default: )
    'dvbin-prog=s' => undef, #                      String (default: )
    'dvbin-timeout=i' => _gcint(1,30), #                   Integer (1 to 30) (default: 30)
    'dvd-angle=i' => _gcint(1,99), #                       Integer (1 to 99) (default: 1)
    'dvd-device=s' => undef, #                      String (default: ) [file]
    'dvd-speed=i' => undef, #                       Integer (default: 0)

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

    'vd=s' => undef, #                             String (default: )
    'vd-lavc-bitexact!' => undef, #               Flag (default: no)
    'vd-lavc-check-hw-profile!' => undef, #       Flag (default: yes)
    'vd-lavc-fast!' => undef, #                   Flag (default: no)
    'vd-lavc-framedrop=s' => [qw/none default nonref bidir nonkey all/], #              Choices: none default nonref bidir nonkey all (default: nonref)
    'vd-lavc-o=s' => undef, #                      Key/value list (default: )
    'vd-lavc-show-all!' => undef, #               Flag (default: no)
    'vd-lavc-skipframe=s' => [qw/none default nonref bidir nonkey all/], #              Choices: none default nonref bidir nonkey all (default: default)
    'vd-lavc-skipidct=s' => [qw/none default nonref bidir nonkey all/], #               Choices: none default nonref bidir nonkey all (default: default)
    'vd-lavc-skiploopfilter=s' => [qw/none default nonref bidir nonkey all/], #         Choices: none default nonref bidir nonkey all (default: default)
    'vd-lavc-threads=i' => _gcint(0,16), #                Integer (0 to 16) (default: 0)
    'vf=s' => undef, #                            Object settings list (default: )
    'vf-defaults=s' => undef, #                    Object settings list (default: )
    'vid=s' => sub { #                            Choices: no auto (or an integer) (1 to 8190) (default: auto)
        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),
        );
    },



( run in 0.547 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )