How do I convert MP4 to OGV while still retaining the same quality using FFMPEG?FFMPEG Splitting MP4 with...
Are all passive ability checks floors for active ability checks?
Are ETF trackers fundamentally better than individual stocks?
Fastest way to pop N items from a large dict
What's the meaning of a knight fighting a snail in medieval book illustrations?
World War I as a war of liberals against authoritarians?
Aluminum electrolytic or ceramic capacitors for linear regulator input and output?
PTIJ: Halachic Status of Breadboards on Pesach
Why is the President allowed to veto a cancellation of emergency powers?
Is it good practice to use Linear Least-Squares with SMA?
Did Ender ever learn that he killed Stilson and/or Bonzo?
What are substitutions for coconut in curry?
Min function accepting varying number of arguments in C++17
How are passwords stolen from companies if they only store hashes?
Describing a chess game in a novel
What is the significance behind "40 days" that often appears in the Bible?
How do you talk to someone whose loved one is dying?
Why is a white electrical wire connected to 2 black wires?
Examples of transfinite towers
Different outputs for `w`, `who`, `whoami` and `id`
Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?
Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?
How to terminate ping <dest> &
Could the Saturn V actually have launched astronauts around Venus?
Why does overlay work only on the first tcolorbox?
How do I convert MP4 to OGV while still retaining the same quality using FFMPEG?
FFMPEG Splitting MP4 with Same QualityHow to convert 3g2 to mp4 without losing audio?Converting FLV to MP4 Using FFMPEG and Preserving the QualityFFmpeg: Keeping quality during conversionFFMPEG convert flv to mp4 without losing qualityHow do I convert avi and mkv to Mp4 while preserving quality using ffmpeg?Getting the smallest video with same quality, how to with FFMPEG?ffmpeg Convert audio files to mp3 using ffmpeg same qualityffmpeg WebM to MP4: awful video qualityConvert any video file to MP4 same quality format from Youtube Video
I'm not familiar with FFMPEG at all and would like to know how to convert MP4 to OGV format while still keeping the same video and audio quality?
ffmpeg
add a comment |
I'm not familiar with FFMPEG at all and would like to know how to convert MP4 to OGV format while still keeping the same video and audio quality?
ffmpeg
add a comment |
I'm not familiar with FFMPEG at all and would like to know how to convert MP4 to OGV format while still keeping the same video and audio quality?
ffmpeg
I'm not familiar with FFMPEG at all and would like to know how to convert MP4 to OGV format while still keeping the same video and audio quality?
ffmpeg
ffmpeg
asked Jul 4 '16 at 19:14
user400424user400424
2,02441320
2,02441320
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Basic command is
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 output.ogv
You'll have to fiddle with the q values for video and audio if the result's not acceptable. Lower values are better but produce bigger files. For libtheora, it's the opposite - higher values are better. Range is 0-10.
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.
– Gringo Suave
2 days ago
add a comment |
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
});
}
});
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%2f1096841%2fhow-do-i-convert-mp4-to-ogv-while-still-retaining-the-same-quality-using-ffmpeg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Basic command is
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 output.ogv
You'll have to fiddle with the q values for video and audio if the result's not acceptable. Lower values are better but produce bigger files. For libtheora, it's the opposite - higher values are better. Range is 0-10.
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.
– Gringo Suave
2 days ago
add a comment |
Basic command is
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 output.ogv
You'll have to fiddle with the q values for video and audio if the result's not acceptable. Lower values are better but produce bigger files. For libtheora, it's the opposite - higher values are better. Range is 0-10.
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.
– Gringo Suave
2 days ago
add a comment |
Basic command is
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 output.ogv
You'll have to fiddle with the q values for video and audio if the result's not acceptable. Lower values are better but produce bigger files. For libtheora, it's the opposite - higher values are better. Range is 0-10.
Basic command is
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 output.ogv
You'll have to fiddle with the q values for video and audio if the result's not acceptable. Lower values are better but produce bigger files. For libtheora, it's the opposite - higher values are better. Range is 0-10.
edited 4 mins ago
answered Jul 4 '16 at 20:35
GyanGyan
15.5k21846
15.5k21846
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.
– Gringo Suave
2 days ago
add a comment |
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.
– Gringo Suave
2 days ago
1
1
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
Also see FFmpeg Wiki: Theora & Vorbis.
– llogan
Jul 4 '16 at 22:32
...
-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.– Gringo Suave
2 days ago
...
-acodec libopus -b:a 128000
worked for me for opus, the quality level isn't supported apparently.– Gringo Suave
2 days ago
add a comment |
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%2f1096841%2fhow-do-i-convert-mp4-to-ogv-while-still-retaining-the-same-quality-using-ffmpeg%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