Mercurial > mplayer.hg
annotate cfg-mencoder.h @ 12437:8f429708a95a
Hint at -playlist option for playing streams.
author | diego |
---|---|
date | Fri, 07 May 2004 11:26:00 +0000 |
parents | ad1a2bad9248 |
children | 4a8748f99375 |
rev | line source |
---|---|
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
1 |
2618 | 2 /* |
3 * config for cfgparser | |
4 */ | |
5 | |
2790 | 6 #include "cfg-common.h" |
7 | |
2618 | 8 #ifdef USE_FAKE_MONO |
9 extern int fakemono; // defined in dec_audio.c | |
10 #endif | |
11 #ifdef HAVE_ODIVX_POSTPROCESS | |
12 extern int use_old_pp; | |
13 #endif | |
14 | |
3272 | 15 extern int sws_flags; |
3771 | 16 extern int readPPOpt(void *, char *arg); |
4256
bbaa26821fdf
Added reverting support for -aa* -zr* -pp and -npp options
albeu
parents:
4207
diff
changeset
|
17 extern void revertPPOpt(void *conf, char* opt); |
8736 | 18 extern char *pp_help; |
3272 | 19 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
20 #ifdef HAVE_DIVX4ENCORE |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
21 extern m_option_t divx4opts_conf[]; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
22 #endif |
2626 | 23 |
3357 | 24 #ifdef HAVE_MP3LAME |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
25 m_option_t lameopts_conf[]={ |
4157 | 26 {"q", &lame_param_quality, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, |
5922
30eea1bd1b64
fixed bogus overloaded "q" parameter for lame mp3 encoding
rfelker
parents:
5848
diff
changeset
|
27 {"aq", &lame_param_algqual, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, |
4157 | 28 {"vbr", &lame_param_vbr, CONF_TYPE_INT, CONF_RANGE, 0, vbr_max_indicator, NULL}, |
29 {"cbr", &lame_param_vbr, CONF_TYPE_FLAG, 0, 0, 0, NULL}, | |
30 {"abr", &lame_param_vbr, CONF_TYPE_FLAG, 0, 0, vbr_abr, NULL}, | |
31 {"mode", &lame_param_mode, CONF_TYPE_INT, CONF_RANGE, 0, MAX_INDICATOR, NULL}, | |
32 {"padding", &lame_param_padding, CONF_TYPE_INT, CONF_RANGE, 0, PAD_MAX_INDICATOR, NULL}, | |
33 {"br", &lame_param_br, CONF_TYPE_INT, CONF_RANGE, 0, 1024, NULL}, | |
34 {"ratio", &lame_param_ratio, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
5848
48a0667742b9
volume setting with lame - patch by silicon@falcon.sch.bme.hu
arpi
parents:
5780
diff
changeset
|
35 {"vol", &lame_param_scale, CONF_TYPE_FLOAT, CONF_RANGE, 0, 10, NULL}, |
11834 | 36 {"lowpassfreq",&lame_param_lowpassfreq, CONF_TYPE_INT, CONF_RANGE, -1, 48000,0}, |
37 {"highpassfreq",&lame_param_highpassfreq, CONF_TYPE_INT, CONF_RANGE, -1, 48000,0}, | |
8517
bcf1b010bf14
Presets are an easy way, to use hard to access lame options and to give
arpi
parents:
8471
diff
changeset
|
38 #if HAVE_MP3LAME >= 392 |
bcf1b010bf14
Presets are an easy way, to use hard to access lame options and to give
arpi
parents:
8471
diff
changeset
|
39 {"fast", &lame_param_fast, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
bcf1b010bf14
Presets are an easy way, to use hard to access lame options and to give
arpi
parents:
8471
diff
changeset
|
40 {"preset", &lame_param_preset, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
8568 | 41 #else |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
42 {"fast", "MPlayer was built without -lameopts fast support (requires libmp3lame >=3.92).\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
43 {"preset", "MPlayer was built without -lameopts preset support (requires libmp3lame >=3.92).\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
8517
bcf1b010bf14
Presets are an easy way, to use hard to access lame options and to give
arpi
parents:
8471
diff
changeset
|
44 #endif |
8896 | 45 {"help", MSGTR_MEncoderMP3LameHelp, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
4157 | 46 {NULL, NULL, 0, 0, 0, 0, NULL} |
2661 | 47 }; |
3357 | 48 #endif |
2661 | 49 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
50 #ifdef USE_LIBAVCODEC |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
51 extern m_option_t lavcopts_conf[]; |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
52 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
53 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
54 #ifdef USE_WIN32DLL |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
55 extern m_option_t vfwopts_conf[]; |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
56 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
57 |
11436 | 58 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
59 extern m_option_t xvidencopts_conf[]; |
7457 | 60 #endif |
61 | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
62 extern m_option_t nuvopts_conf[]; |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
9300
diff
changeset
|
63 |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
64 m_option_t ovc_conf[]={ |
4157 | 65 {"copy", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_COPY, NULL}, |
66 {"frameno", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_FRAMENO, NULL}, | |
67 {"divx4", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_DIVX4, NULL}, | |
5553
38697931adf4
video codecs moved to libmpencoders, crop/scale removed, use -vop for that
arpi
parents:
5390
diff
changeset
|
68 // {"raw", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_RAW, NULL}, |
4157 | 69 {"lavc", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_LIBAVCODEC, NULL}, |
5553
38697931adf4
video codecs moved to libmpencoders, crop/scale removed, use -vop for that
arpi
parents:
5390
diff
changeset
|
70 // {"null", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_NULL, NULL}, |
11966 | 71 {"raw", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_RAW, NULL}, |
4575 | 72 {"vfw", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_VFW, NULL}, |
5578 | 73 {"libdv", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_LIBDV, NULL}, |
7457 | 74 {"xvid", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_XVID, NULL}, |
8471 | 75 {"qtvideo", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_QTVIDEO, NULL}, |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
9300
diff
changeset
|
76 {"nuv", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_NUV, NULL}, |
6923
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
77 {"help", "\nAvailable codecs:\n" |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
78 " copy - frame copy, without re-encoding. Doesn't work with filters.\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
79 " frameno - special audio-only file for 3-pass encoding, see DOCS.\n" |
11966 | 80 " raw - uncompressed video. Use fourcc option to set format explicitly.\n" |
10668 | 81 " nuv - nuppel video\n" |
5678 | 82 #ifdef HAVE_DIVX4ENCORE |
9300
32be26de0d7c
cleanup detection of various divx4 versions/alternatives
arpi
parents:
9099
diff
changeset
|
83 #ifdef ENCORE_XVID |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
84 " divx4 - XviD (divx4linux compatibility mode)\n" |
9300
32be26de0d7c
cleanup detection of various divx4 versions/alternatives
arpi
parents:
9099
diff
changeset
|
85 #else |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
86 " divx4 - divx4linux/divx5linux library (depends on configuration)\n" |
9300
32be26de0d7c
cleanup detection of various divx4 versions/alternatives
arpi
parents:
9099
diff
changeset
|
87 #endif |
5678 | 88 #endif |
89 #ifdef USE_LIBAVCODEC | |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
90 " lavc - libavcodec codecs - best quality!\n" |
5678 | 91 #endif |
92 #ifdef USE_WIN32DLL | |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
93 " vfw - VfW DLLs, currently only AVID is supported.\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
94 " qtvideo - QuickTime DLLs, currently only SVQ1/3 are supported.\n" |
5678 | 95 #endif |
96 #ifdef HAVE_LIBDV095 | |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
97 " libdv - DV encoding with libdv v0.9.5\n" |
5678 | 98 #endif |
11436 | 99 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
100 " xvid - XviD encoding\n" |
7457 | 101 #endif |
5678 | 102 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
4157 | 103 {NULL, NULL, 0, 0, 0, 0, NULL} |
2661 | 104 }; |
105 | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
106 m_option_t oac_conf[]={ |
4157 | 107 {"copy", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_COPY, NULL}, |
108 {"pcm", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_PCM, NULL}, | |
3357 | 109 #ifdef HAVE_MP3LAME |
4157 | 110 {"mp3lame", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_VBRMP3, NULL}, |
3357 | 111 #else |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
112 {"mp3lame", "MPlayer was compiled without libmp3lame support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
3357 | 113 #endif |
11375 | 114 #ifdef USE_LIBAVCODEC |
115 {"lavc", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_LAVC, NULL}, | |
116 #else | |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
117 {"lavc", "MPlayer was compiled without libavcodec. See README or DOCS.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
11375 | 118 #endif |
6923
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
119 {"help", "\nAvailable codecs:\n" |
8567
917130ff78bb
Three typos, two of them noticed by Arpad Biro <biro_arpad@yahoo.com>.
diego
parents:
8517
diff
changeset
|
120 " copy - frame copy, without re-encoding (useful for AC3)\n" |
6923
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
121 " pcm - uncompressed PCM audio\n" |
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
122 #ifdef HAVE_MP3LAME |
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
123 " mp3lame - cbr/abr/vbr MP3 using libmp3lame\n" |
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
124 #endif |
11375 | 125 #ifdef USE_LIBAVCODEC |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
126 " lavc - FFmpeg audio encoder (MP2, AC3, ...)\n" |
11375 | 127 #endif |
6923
60374fa581fc
no default oac/ovc (it just confuses users), more detailed -oac/-ovc help
arpi
parents:
6862
diff
changeset
|
128 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
4157 | 129 {NULL, NULL, 0, 0, 0, 0, NULL} |
2626 | 130 }; |
131 | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
132 m_option_t info_conf[]={ |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
133 {"name", &info_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
134 {"artist", &info_artist, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
135 {"genre", &info_genre, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
136 {"subject", &info_subject, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
137 {"copyright", &info_copyright, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
138 {"srcform", &info_sourceform, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
139 {"comment", &info_comment, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
140 {"help", "\nAvailable INFO fields:\n" |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
141 " name - title of the work\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
142 " artist - artist or author of the work\n" |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
143 " genre - original work category\n" |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
144 " subject - contents of the work\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
145 " copyright - copyright information\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
146 " srcform - original format of the digitzed material\n" |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
147 " comment - general comments about the work\n" |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
148 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
149 {NULL, NULL, 0, 0, 0, 0, NULL} |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
150 }; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
151 |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
152 m_option_t of_conf[]={ |
8585 | 153 {"avi", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_AVI, NULL}, |
154 {"mpeg", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_MPEG, NULL}, | |
12016
b962aaad2940
rawvideo muxer patch by John Earl <jwe21@cam.ac.uk>
ranma
parents:
11966
diff
changeset
|
155 {"rawvideo", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_RAWVIDEO, NULL}, |
8585 | 156 {"help", "\nAvailable output formats:\n" |
157 " avi - Microsoft Audio/Video Interleaved\n" | |
158 " mpeg - MPEG-1 system stream format\n" | |
12016
b962aaad2940
rawvideo muxer patch by John Earl <jwe21@cam.ac.uk>
ranma
parents:
11966
diff
changeset
|
159 " rawvideo - (video only, one stream only) raw stream, no muxing\n" |
8585 | 160 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
161 {NULL, NULL, 0, 0, 0, 0, NULL} | |
162 }; | |
163 | |
12061 | 164 extern float avi_aspect_override; /* defined in libmpdemux/muxer_avi.c */ |
12363 | 165 extern int write_odml; /* defined in libmpdemux/muxer_avi.c */ |
12061 | 166 |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10562
diff
changeset
|
167 m_option_t mencoder_opts[]={ |
2618 | 168 /* name, pointer, type, flags, min, max */ |
169 | |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4158
diff
changeset
|
170 {"endpos", parse_end_at, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL}, |
5974 | 171 |
12408
ad1a2bad9248
typos, wording and mistakes pointed out by the wanderer
diego
parents:
12407
diff
changeset
|
172 // set output framerate - recommended for variable-FPS (ASF etc) files |
ad1a2bad9248
typos, wording and mistakes pointed out by the wanderer
diego
parents:
12407
diff
changeset
|
173 // and for 29.97FPS progressive MPEG2 streams |
4157 | 174 {"ofps", &force_ofps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL}, |
175 {"o", &out_filename, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
2626 | 176 |
5974 | 177 // limit number of skippable frames after a non-skipped one |
5629 | 178 {"skiplimit", &skip_limit, CONF_TYPE_INT, 0, 0, 0, NULL}, |
179 {"noskiplimit", &skip_limit, CONF_TYPE_FLAG, 0, 0, -1, NULL}, | |
180 {"noskip", &skip_limit, CONF_TYPE_FLAG, 0, 0, 0, NULL}, | |
181 | |
6861 | 182 {"audio-density", &audio_density, CONF_TYPE_INT, CONF_RANGE, 1, 50, NULL}, |
183 {"audio-preload", &audio_preload, CONF_TYPE_FLOAT, CONF_RANGE, 0, 2, NULL}, | |
6862 | 184 {"audio-delay", &audio_delay, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL}, |
6861 | 185 |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
186 {"x", "-x is obsolete, use -vf scale=w:h for scaling.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
187 {"xsize", "-xsize is obsolete, use -vf crop=w:h:x:y for cropping.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
5270 | 188 |
8567
917130ff78bb
Three typos, two of them noticed by Arpad Biro <biro_arpad@yahoo.com>.
diego
parents:
8517
diff
changeset
|
189 // output audio/video codec selection |
4157 | 190 {"oac", oac_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
191 {"ovc", ovc_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, | |
2643 | 192 |
8585 | 193 // output file format |
194 {"of", of_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, | |
195 | |
5974 | 196 // override FOURCC in output file |
4157 | 197 {"ffourcc", &force_fourcc, CONF_TYPE_STRING, 0, 4, 4, NULL}, |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
198 |
12061 | 199 // override avi aspect autodetection |
200 {"force-avi-aspect", &avi_aspect_override, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL}, | |
201 | |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
202 {"pass", "-pass is obsolete, use -lavcopts vpass=n, -xvidencopts pass=n, -divx4opts pass=n\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
4157 | 203 {"passlogfile", &passtmpfile, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
2626 | 204 |
6674
f8551f89dd48
MEncoder vobsub ripping support, currently not compatible with windows vobsub, some bugs to be fixed. However it already works with mplayer, so it's a start.
atmos4
parents:
6671
diff
changeset
|
205 {"vobsubout", &vobsub_out, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
f8551f89dd48
MEncoder vobsub ripping support, currently not compatible with windows vobsub, some bugs to be fixed. However it already works with mplayer, so it's a start.
atmos4
parents:
6671
diff
changeset
|
206 {"vobsuboutindex", &vobsub_out_index, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL}, |
f8551f89dd48
MEncoder vobsub ripping support, currently not compatible with windows vobsub, some bugs to be fixed. However it already works with mplayer, so it's a start.
atmos4
parents:
6671
diff
changeset
|
207 {"vobsuboutid", &vobsub_out_id, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
f8551f89dd48
MEncoder vobsub ripping support, currently not compatible with windows vobsub, some bugs to be fixed. However it already works with mplayer, so it's a start.
atmos4
parents:
6671
diff
changeset
|
208 |
9076
92014b66ed3d
ability to disable the nonsense expand filter is a must! otherwise
rfelker
parents:
8896
diff
changeset
|
209 {"autoexpand", &auto_expand, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
92014b66ed3d
ability to disable the nonsense expand filter is a must! otherwise
rfelker
parents:
8896
diff
changeset
|
210 {"noautoexpand", &auto_expand, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
92014b66ed3d
ability to disable the nonsense expand filter is a must! otherwise
rfelker
parents:
8896
diff
changeset
|
211 |
12355 | 212 {"encodedups", &encode_duplicates, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
213 {"noencodedups", &encode_duplicates, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
214 | |
12363 | 215 {"odml", &write_odml, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
216 {"noodml", &write_odml, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
217 | |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
218 // info header strings |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
219 {"info", info_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
6923
diff
changeset
|
220 |
5390
386f6fcc92d5
libavcodec 2pass broke mencoder if divx4encore was not available. fixed.
rfelker
parents:
5376
diff
changeset
|
221 #ifdef HAVE_DIVX4ENCORE |
4157 | 222 {"divx4opts", divx4opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
223 #endif |
3357 | 224 #ifdef HAVE_MP3LAME |
4157 | 225 {"lameopts", lameopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
3357 | 226 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
227 #ifdef USE_LIBAVCODEC |
4157 | 228 {"lavcopts", lavcopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
9099 | 229 #else |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12363
diff
changeset
|
230 {"lavcopts", "MPlayer was compiled without libavcodec. See README or DOCS.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
231 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
232 #ifdef USE_WIN32DLL |
4157 | 233 {"vfwopts", vfwopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
234 #endif |
11436 | 235 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
7457 | 236 {"xvidencopts", xvidencopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
237 #endif | |
2618 | 238 |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
9300
diff
changeset
|
239 {"nuvopts", nuvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
9300
diff
changeset
|
240 |
2790 | 241 #define MAIN_CONF |
2618 | 242 #include "cfg-common.h" |
2790 | 243 #undef MAIN_CONF |
2618 | 244 |
4157 | 245 // {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
246 // {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
247 // {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
248 {NULL, NULL, 0, 0, 0, 0, NULL} | |
2618 | 249 }; |