This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
parseutil: Add more resolution aliases
Add DCI 2k and 4k and uhd1 and uhd2.
tags/n2.8
Luca Barbato
10 years ago
parent
69b92f1b99
commit
e93ca480c9
2 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
doc/avconv.texi
+4
-0
libavutil/parseutils.c
+ 8
- 0
doc/avconv.texi
View File
@@ -493,6 +493,14 @@ abbreviations are recognized:
1280x720
@item hd1080
1920x1080
@item 2kdci
2048x1080
@item 4kdci
4096x2160
@item uhd1
3840x2160
@item uhd2
7680x4320
@end table
@item -aspect[:@var{stream_specifier}] @var{aspect} (@emph{output,per-stream})
+ 4
- 0
libavutil/parseutils.c
View File
@@ -80,6 +80,10 @@ static const VideoSizeAbbr video_size_abbrs[] = {
{ "hd480", 852, 480 },
{ "hd720", 1280, 720 },
{ "hd1080", 1920,1080 },
{ "2kdci", 2048,1080 },
{ "4kdci", 4096,2160 },
{ "uhd1", 3840,2160 },
{ "uhd2", 7680,4320 },
};
static const VideoRateAbbr video_rate_abbrs[]= {
Write
Preview
Loading…
Cancel
Save