I have the next task - there are 3 files: *.mkv file without soundtrack, and two *.mka tracks. I need to merge all of them to the one file (and do it via ubuntu cli). I tried mkvmerge tool, it doing it great, but it generates video file with two audio tracks for choice (like different languages in the movies), but i need do have sound from both tracks in the same time (maybe as a left-right channel, doesn't matter). I tried to google about it - and found nothing. Thanks.
How to merge two *.MKA files to one?
2.7k Views Asked by vlreshet At
1
There are 1 best solutions below
Related Questions in UBUNTU
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- EMACS-Live + Slime error at startup
- Vagrant - Ansible error installing Apache
- Openfire Smack Connection issue
- Error in Ruby on Rails on Ubuntu 14.04
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- C++ string and char* manipulation acting weird
- Data transfer between Ubuntu/Windows to network
- How to upgrade Node js version to 0.12.4 on Ubuntu
- How do I install Intellij on Ubuntu 15.04?
- Can't run django-admin startproject mysite (ubuntu, django.core.exceptions.ImproperlyConfigured)
- How to add apt key with --recv-keys instead of --recv?
- Express - Multiparty/Formidable unable to parse files greater than 100kb on Ubuntu. Callback of Parse is not called at all
- Unable start mongoose im in ubuntu. process crashes
- Tkinter application topmost, even over fullscreen
Related Questions in AUDIO
- Play multiple audio files in a slider
- Unity3d AudioSource not creatable
- JavaFX can't play mp3 files
- iPhone simultaneous sound output
- Phonegap Build App - Play Audio
- HTML5 Audio pause not working
- Java boolean play button issue (play over and over again with each click)
- import a sound externally or from the library? AS3
- Set audio source
- Saving a sound bite as a ringtone
- Using OnAudioFilterRead with playOnAwake
- Audio recorded with Samsung does not play on iOS
- fftw of 16bit Audio :: peak appearing wrong at 2f
- How to Export an audio file with effect in iOS
- Tried multiple solutions onsite, none worked: Play <audio> on Konami code
Related Questions in MERGE
- Sub-directory into independent repository and later merge back into main repository
- R: Avoid loop or row apply function
- neo4j load csv invalid "ON MATCH"
- PIG merge two lines in the log
- In SVN, what's the different between "merge from a to b" an "merge from b to a"?
- git merge "deleted by us"
- Merge sort using CUDA: efficient implementation for small input arrays
- Merge project from other branch git
- Get a single line representation for multiple close by lines clustered together in opencv
- merge or mutate a summary (dplyr)
- How to I combine data from two XML files into the same structure?
- Merging PDF files with similar names using PDFTK and a bash script
- git has problems with squashing commits once there is "Merge branch"
- How can I combine elements at the same index from separate lists?
- Merging two sorted stacks
Related Questions in MKV
- Converting mkv to h264 FFmpeg
- When converting mkv to mp4, the audio is lost
- How to Have 2 variables using FOR work simultaneously in batch command?
- mkvtoolnix bulk remove audio tracks
- Video file formats for H.264
- How to merge two *.MKA files to one?
- MKV seekhead parsing
- ffmpeg - how can i create a bash loop to convert mkv files to mp4
- Container for a single h264 video stream
- Is there a way to batch split a file by chapter with ffmpeg and then reassemble with mkvmerge in windows?
- ffmpeg change video stream resolution
- Renaming multiple video files using RE and OS
- Encode audio and video in same format and then merge
- Programatically open VLC media player from browser
- Bash script to search and rename recursively
Related Questions in MATROSKA
- Gstreamer : mastroskamux error : not linked
- How to merge two *.MKA files to one?
- MediaRecorder does not produce a valid WebM file
- How do I stop AWS Elemental MediaConvert chopping off the quiet part of my audio?
- How do I align the start times of simultaneous Twilio video rooms audio recordings when the offset property isn't doing its job?
- Programatically open VLC media player from browser
- Using Vorbis without Ogg?
- Matroska Muxer filter for DirectShow
- Gstreamer mux, caps refused
- Writing matroska to an append only stream
- Is there any way to write h264 encoded video stream in a matroska file with gstreamer?
- FFmpeg: create data streams in MP4 container
- Can't write packet with unknown timestamp av_interleaved_write_frame(): Invalid argument
- How to pass audio stream recorded with WebRTC to Google Speech api for realtime transcription?
- gstreamer: m3u8 to mkv/kinesis video fails
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Use ffmpeg.
Concatenate your videos, using ffmpeg's "concatenate" module:
Mix your two audio files:
Put the audio on the video:
You can look at the documentation if your problem has some specifics which were not taken of in my answer, or browse StackOverflow and SuperUser.