Google VP9 ffmpeg examples errorFfmpeg Webm Encoding ErrorVP9 encoding using FFmpegConvert video with vp9...
Eww, those bytes are gross
Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?
How to say "Brexit" in Latin?
Who is this Ant Woman character in this image alongside the Wasp?
Finding a mistake using Mayer-Vietoris
Early credit roll before the end of the film
Table formatting top left corner caption
Why did the villain in the first Men in Black movie care about Earth's Cockroaches?
How can animals be objects of ethics without being subjects as well?
Avoiding morning and evening handshakes
My cat mixes up the floors in my building. How can I help him?
Why are the books in the Game of Thrones citadel library shelved spine inwards?
Why did other German political parties disband so fast when Hitler was appointed chancellor?
It took me a lot of time to make this, pls like. (YouTube Comments #1)
what does しにみえてる mean?
Why do no American passenger airlines still operate dedicated cargo flights?
Can I write a book of my D&D game?
Can we use the stored gravitational potential energy of a building to produce power?
Porting Linux to another platform requirements
Word or phrase for showing great skill at something WITHOUT formal training in it
Am I a Rude Number?
Roman Numerals equation 1
Pronunciation of umlaut vowels in the history of German
Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?
Google VP9 ffmpeg examples error
Ffmpeg Webm Encoding ErrorVP9 encoding using FFmpegConvert video with vp9 codec using ffmpegFFmpeg: Error when copying subtitle-streams using iFFmpegffmpeg encoding to VP9 results in Google Chrome-unplayable video, while to VP8 worksSettings For ffmpeg For Best VP9 Quality for Web PublishingCan I make FFmpeg precisely constrain the video bitrate?FFMPEG zoompan filter examplesError while runnig ffmpegStrange colors when trying to encode 4k with VP9
On the Google developer vp9 documentation here, the recommended command ffmpeg command lines seem to be incorrectly formed.
It seems to me that the command such as this
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 tos-320x240.webm &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 -y tos-320x240.webm
should actually be more along the lines of
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 -y /dev/null &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 tos-320x240.webm
This is based on ffmpeg documentation here
However quoting the Google documentation page
'Note that the first-pass and second-pass commands are chained together. The -y argument in the second-pass command answers "Yes" when FFMpeg asks to overwrite the first-pass statistics file with the output video.'
Based on my understanding of two pass in ffmpeg, the "statistics" file will be by default in ffmpeg2pass-0.log and the actual output file is useless.
Is the libvpx-vp9 encoder using the two pass settings differently than is standard in ffmpeg? Or is Google developers page just wrong?
ffmpeg vp9
New contributor
add a comment |
On the Google developer vp9 documentation here, the recommended command ffmpeg command lines seem to be incorrectly formed.
It seems to me that the command such as this
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 tos-320x240.webm &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 -y tos-320x240.webm
should actually be more along the lines of
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 -y /dev/null &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 tos-320x240.webm
This is based on ffmpeg documentation here
However quoting the Google documentation page
'Note that the first-pass and second-pass commands are chained together. The -y argument in the second-pass command answers "Yes" when FFMpeg asks to overwrite the first-pass statistics file with the output video.'
Based on my understanding of two pass in ffmpeg, the "statistics" file will be by default in ffmpeg2pass-0.log and the actual output file is useless.
Is the libvpx-vp9 encoder using the two pass settings differently than is standard in ffmpeg? Or is Google developers page just wrong?
ffmpeg vp9
New contributor
add a comment |
On the Google developer vp9 documentation here, the recommended command ffmpeg command lines seem to be incorrectly formed.
It seems to me that the command such as this
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 tos-320x240.webm &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 -y tos-320x240.webm
should actually be more along the lines of
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 -y /dev/null &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 tos-320x240.webm
This is based on ffmpeg documentation here
However quoting the Google documentation page
'Note that the first-pass and second-pass commands are chained together. The -y argument in the second-pass command answers "Yes" when FFMpeg asks to overwrite the first-pass statistics file with the output video.'
Based on my understanding of two pass in ffmpeg, the "statistics" file will be by default in ffmpeg2pass-0.log and the actual output file is useless.
Is the libvpx-vp9 encoder using the two pass settings differently than is standard in ffmpeg? Or is Google developers page just wrong?
ffmpeg vp9
New contributor
On the Google developer vp9 documentation here, the recommended command ffmpeg command lines seem to be incorrectly formed.
It seems to me that the command such as this
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 tos-320x240.webm &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 -y tos-320x240.webm
should actually be more along the lines of
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 1 -speed 4 -y /dev/null &&
ffmpeg -i tears_of_steel_1080p.webm -vf scale=320x240 -b:v 150k
-minrate 75k -maxrate 218k -tile-columns 0 -g 240 -threads 2
-quality good -crf 37 -c:v libvpx-vp9 -c:a libopus
-pass 2 -speed 1 tos-320x240.webm
This is based on ffmpeg documentation here
However quoting the Google documentation page
'Note that the first-pass and second-pass commands are chained together. The -y argument in the second-pass command answers "Yes" when FFMpeg asks to overwrite the first-pass statistics file with the output video.'
Based on my understanding of two pass in ffmpeg, the "statistics" file will be by default in ffmpeg2pass-0.log and the actual output file is useless.
Is the libvpx-vp9 encoder using the two pass settings differently than is standard in ffmpeg? Or is Google developers page just wrong?
ffmpeg vp9
ffmpeg vp9
New contributor
New contributor
New contributor
asked 5 mins ago
MR1865MR1865
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
MR1865 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1410371%2fgoogle-vp9-ffmpeg-examples-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
MR1865 is a new contributor. Be nice, and check out our Code of Conduct.
MR1865 is a new contributor. Be nice, and check out our Code of Conduct.
MR1865 is a new contributor. Be nice, and check out our Code of Conduct.
MR1865 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1410371%2fgoogle-vp9-ffmpeg-examples-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown