Convert video to exactly the same format as another videoHow do I convert a MKV file to H.264/AVC with a...
How could a civilization detect tachyons?
How long can fsck take on a 30 TB volume?
Can I bring back Planetary Romance as a genre?
I'm attempting to understand my 401k match and how much I need to contribute to maximize the match
Crime rates in a post-scarcity economy
Magical Modulo Squares
Exactly which act of bravery are Luke and Han awarded a medal for?
Two (probably) equal real numbers which are not proved to be equal?
How to explain intravenous drug abuse to a 6-year-old?
How can one see if an address is multisig?
Expl3 and recent xparse on overleaf: No expl3 loader detected
Visual Studio Code download existing code
When an electron around an atom drops to a lower state, is 100% of the energy converted to a photon?
My perfect evil overlord plan... or is it?
Is it a good idea to copy a trader when investing?
Should one save up to purchase a house/condo or maximize their 401(k) first?
How do I calculate my to-hit bonus when using the Great Weapon Master feat?
What happens when the drag force exceeds the weight of an object falling into earth?
How is it believable that Euron could so easily pull off this ambush?
Employee is self-centered and affects the team negatively
Program for finding longest run of zeros from a list of 100 random integers which are either 0 or 1
Do oversize pulley wheels increase derailleur capacity?
Are wands in any sort of book going to be too much like Harry Potter?
What should I use to get rid of some kind of weed in my onions
Convert video to exactly the same format as another video
How do I convert a MKV file to H.264/AVC with a resolution of 640x360 using FFMPEG?Is it possible the get the original (best) audio quality when using avconv?Piping Sox and FFMPEG togetherHow to convert a video file from mp4 to mp2Re-encoding video library in x265 (HEVC) with no quality lossHow to re-encode file A.mp4 with the same settings as B.mp4?avconv commandline for downsampling HD video to SDffmpeg: reencode and re-stream a network stream at lower bitrateDon't wait for audio stream with ffmpeg/avconv using named pipesLossless audio conversion from FLAC to ALAC using ffmpeg
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
Suppose I have two video files A and B.
Now I want to convert A to the same format (i.e. same container, same audio and video codec), same bitrate, size etc. as B.
Is there a way to do this automatically (i.e. without extracting the information manually and giving it manually as input parameters) using a command line tool (or even a GUI tool)?
video ffmpeg avconv mencoder
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Suppose I have two video files A and B.
Now I want to convert A to the same format (i.e. same container, same audio and video codec), same bitrate, size etc. as B.
Is there a way to do this automatically (i.e. without extracting the information manually and giving it manually as input parameters) using a command line tool (or even a GUI tool)?
video ffmpeg avconv mencoder
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Suppose I have two video files A and B.
Now I want to convert A to the same format (i.e. same container, same audio and video codec), same bitrate, size etc. as B.
Is there a way to do this automatically (i.e. without extracting the information manually and giving it manually as input parameters) using a command line tool (or even a GUI tool)?
video ffmpeg avconv mencoder
Suppose I have two video files A and B.
Now I want to convert A to the same format (i.e. same container, same audio and video codec), same bitrate, size etc. as B.
Is there a way to do this automatically (i.e. without extracting the information manually and giving it manually as input parameters) using a command line tool (or even a GUI tool)?
video ffmpeg avconv mencoder
video ffmpeg avconv mencoder
asked Nov 26 '14 at 19:12
studentstudent
7,2251767130
7,2251767130
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I think if you parse ffmpeg output you could achieve this in part, but beware the labyrinthe documentation on how to encode for best results. It's a little tricky.
Perhaps an alternate approach is to find a common standard whose parameters can be set one, and leave your transcoder job running on all A, B, etc.
add a comment |
No It is not possible to have all the parameters same as B. We need to compromise or adjust some attribute of the Video A, so that the other attribute of the video A matches with the video B.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f170138%2fconvert-video-to-exactly-the-same-format-as-another-video%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think if you parse ffmpeg output you could achieve this in part, but beware the labyrinthe documentation on how to encode for best results. It's a little tricky.
Perhaps an alternate approach is to find a common standard whose parameters can be set one, and leave your transcoder job running on all A, B, etc.
add a comment |
I think if you parse ffmpeg output you could achieve this in part, but beware the labyrinthe documentation on how to encode for best results. It's a little tricky.
Perhaps an alternate approach is to find a common standard whose parameters can be set one, and leave your transcoder job running on all A, B, etc.
add a comment |
I think if you parse ffmpeg output you could achieve this in part, but beware the labyrinthe documentation on how to encode for best results. It's a little tricky.
Perhaps an alternate approach is to find a common standard whose parameters can be set one, and leave your transcoder job running on all A, B, etc.
I think if you parse ffmpeg output you could achieve this in part, but beware the labyrinthe documentation on how to encode for best results. It's a little tricky.
Perhaps an alternate approach is to find a common standard whose parameters can be set one, and leave your transcoder job running on all A, B, etc.
answered Nov 27 '14 at 0:27
Kalvin LeeKalvin Lee
16229
16229
add a comment |
add a comment |
No It is not possible to have all the parameters same as B. We need to compromise or adjust some attribute of the Video A, so that the other attribute of the video A matches with the video B.
add a comment |
No It is not possible to have all the parameters same as B. We need to compromise or adjust some attribute of the Video A, so that the other attribute of the video A matches with the video B.
add a comment |
No It is not possible to have all the parameters same as B. We need to compromise or adjust some attribute of the Video A, so that the other attribute of the video A matches with the video B.
No It is not possible to have all the parameters same as B. We need to compromise or adjust some attribute of the Video A, so that the other attribute of the video A matches with the video B.
edited Apr 5 at 23:02
Rui F Ribeiro
42.7k1486146
42.7k1486146
answered Nov 26 '14 at 20:48
vembutechvembutech
26515
26515
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f170138%2fconvert-video-to-exactly-the-same-format-as-another-video%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