Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
ffmpeg2theora
Commits
33b9d4ec
Commit
33b9d4ec
authored
Jul 28, 2009
by
Jan Gerber
Browse files
remove mention of upper bitrate limit, was not enforced anyway
parent
b4fe69c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
ffmpeg2theora.1
View file @
33b9d4ec
...
...
@@ -55,7 +55,7 @@ Encode file with v2v preset. Right now, there is preview, pro and videobin. Ru
use higher values for better quality
.TP
.B \-V, \-\-videobitrate
[1 to 16778]
Set encoding bitrate for video (in kb/s).
Set encoding bitrate for video (in kb/s).
.TP
.B\-\-soft\-target
Use a large reservoir and treat the rate
...
...
src/ffmpeg2theora.c
View file @
33b9d4ec
...
...
@@ -1644,7 +1644,7 @@ void print_usage() {
"Video output options:
\n
"
" -v, --videoquality [0 to 10] encoding quality for video (default: 5)
\n
"
" use higher values for better quality
\n
"
" -V, --videobitrate
[1 to 16778]
encoding bitrate for video (kb/s)
\n
"
" -V, --videobitrate encoding bitrate for video (kb/s)
\n
"
" --soft-target Use a large reservoir and treat the rate
\n
"
" as a soft target; rate control is less
\n
"
" strict but resulting quality is usually
\n
"
...
...
@@ -2096,7 +2096,7 @@ int main(int argc, char **argv) {
case
'V'
:
convert
->
video_bitrate
=
rint
(
atof
(
optarg
)
*
1000
);
if
(
convert
->
video_bitrate
<
1
)
{
fprintf
(
stderr
,
"Only
values from 1 to 16000
are
v
al
i
d for video bitrate (in kb/s).
\n
"
);
fprintf
(
stderr
,
"Only
positive values
are al
lowe
d for video bitrate (in kb/s).
\n
"
);
exit
(
1
);
}
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment