How do I extraxt audio files from mkv files? TO DELET THE MUSIC IN THE BACKGROUND
I want to know how to get all the audio files from the mkv file.
it has to be more than one file.
SO I CAN DELETE THE MUSIC IN THE BACKGROUND of THE VIDEO.
- What software I can use?
- And how to use it?
3- And if i need video editor what is it?
and don't tell me to use noise reduction in Audacity
IT'S SO BAD.
But this have to work for ubuntu 18.04.
(If you don't understand me I'm sorry, Because I'm not a native speaker)
sound extract mkv
New contributor
add a comment |
I want to know how to get all the audio files from the mkv file.
it has to be more than one file.
SO I CAN DELETE THE MUSIC IN THE BACKGROUND of THE VIDEO.
- What software I can use?
- And how to use it?
3- And if i need video editor what is it?
and don't tell me to use noise reduction in Audacity
IT'S SO BAD.
But this have to work for ubuntu 18.04.
(If you don't understand me I'm sorry, Because I'm not a native speaker)
sound extract mkv
New contributor
add a comment |
I want to know how to get all the audio files from the mkv file.
it has to be more than one file.
SO I CAN DELETE THE MUSIC IN THE BACKGROUND of THE VIDEO.
- What software I can use?
- And how to use it?
3- And if i need video editor what is it?
and don't tell me to use noise reduction in Audacity
IT'S SO BAD.
But this have to work for ubuntu 18.04.
(If you don't understand me I'm sorry, Because I'm not a native speaker)
sound extract mkv
New contributor
I want to know how to get all the audio files from the mkv file.
it has to be more than one file.
SO I CAN DELETE THE MUSIC IN THE BACKGROUND of THE VIDEO.
- What software I can use?
- And how to use it?
3- And if i need video editor what is it?
and don't tell me to use noise reduction in Audacity
IT'S SO BAD.
But this have to work for ubuntu 18.04.
(If you don't understand me I'm sorry, Because I'm not a native speaker)
sound extract mkv
sound extract mkv
New contributor
New contributor
edited Dec 20 at 7:52
New contributor
asked Dec 18 at 2:25
user9344882
112
112
New contributor
New contributor
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
ffmpeg is a really useful and versatile tool for this type of task. See a good explanation here:
https://stackoverflow.com/a/27413824/6859929
Or summarized:
sudo apt-get install ffmpeg
ffmpeg -i input-video.mkv -vn -acodec copy output-audio.opus
EDIT 2018-12-20: The OP was about extracting the audio track from an MKV container. Actually modifying the track needs very different tools, and Audacity is probably quite appropriate. However, removing (white) noise probably won't have any positive effect, since background music isn't that type of noise.
If the music is stronger in some frequencies you can try and band-pass filter the signal to dampen those frequencies.
If you have the audio track of the signal you want to remove, you can try and subtract it from the original signal - possibly after Fourier transforming both of them.
New contributor
add a comment |
it's very easy to extract audio files from *.mkv files. I suggest you to install MKVToolNix, from here > https://mkvtoolnix.download/ and follow but I'll outline what you have to do:
- open your terminal (Ctrl+Alt+t)
run this commands:
wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -
sudo apt update
sudo apt install mkvtoolnix mkvtoolnix-gui
after that you can open with right click you mkv files and untick all except audio files. After that you can save your mpa (MP4 audio only) file(s) somewhere.
Here, I've compiled video to help you :)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
user9344882 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%2faskubuntu.com%2fquestions%2f1102707%2fhow-do-i-extraxt-audio-files-from-mkv-files-to-delet-the-music-in-the-backgroun%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
ffmpeg is a really useful and versatile tool for this type of task. See a good explanation here:
https://stackoverflow.com/a/27413824/6859929
Or summarized:
sudo apt-get install ffmpeg
ffmpeg -i input-video.mkv -vn -acodec copy output-audio.opus
EDIT 2018-12-20: The OP was about extracting the audio track from an MKV container. Actually modifying the track needs very different tools, and Audacity is probably quite appropriate. However, removing (white) noise probably won't have any positive effect, since background music isn't that type of noise.
If the music is stronger in some frequencies you can try and band-pass filter the signal to dampen those frequencies.
If you have the audio track of the signal you want to remove, you can try and subtract it from the original signal - possibly after Fourier transforming both of them.
New contributor
add a comment |
ffmpeg is a really useful and versatile tool for this type of task. See a good explanation here:
https://stackoverflow.com/a/27413824/6859929
Or summarized:
sudo apt-get install ffmpeg
ffmpeg -i input-video.mkv -vn -acodec copy output-audio.opus
EDIT 2018-12-20: The OP was about extracting the audio track from an MKV container. Actually modifying the track needs very different tools, and Audacity is probably quite appropriate. However, removing (white) noise probably won't have any positive effect, since background music isn't that type of noise.
If the music is stronger in some frequencies you can try and band-pass filter the signal to dampen those frequencies.
If you have the audio track of the signal you want to remove, you can try and subtract it from the original signal - possibly after Fourier transforming both of them.
New contributor
add a comment |
ffmpeg is a really useful and versatile tool for this type of task. See a good explanation here:
https://stackoverflow.com/a/27413824/6859929
Or summarized:
sudo apt-get install ffmpeg
ffmpeg -i input-video.mkv -vn -acodec copy output-audio.opus
EDIT 2018-12-20: The OP was about extracting the audio track from an MKV container. Actually modifying the track needs very different tools, and Audacity is probably quite appropriate. However, removing (white) noise probably won't have any positive effect, since background music isn't that type of noise.
If the music is stronger in some frequencies you can try and band-pass filter the signal to dampen those frequencies.
If you have the audio track of the signal you want to remove, you can try and subtract it from the original signal - possibly after Fourier transforming both of them.
New contributor
ffmpeg is a really useful and versatile tool for this type of task. See a good explanation here:
https://stackoverflow.com/a/27413824/6859929
Or summarized:
sudo apt-get install ffmpeg
ffmpeg -i input-video.mkv -vn -acodec copy output-audio.opus
EDIT 2018-12-20: The OP was about extracting the audio track from an MKV container. Actually modifying the track needs very different tools, and Audacity is probably quite appropriate. However, removing (white) noise probably won't have any positive effect, since background music isn't that type of noise.
If the music is stronger in some frequencies you can try and band-pass filter the signal to dampen those frequencies.
If you have the audio track of the signal you want to remove, you can try and subtract it from the original signal - possibly after Fourier transforming both of them.
New contributor
edited Dec 20 at 10:28
New contributor
answered Dec 19 at 23:07
NicolasG
314
314
New contributor
New contributor
add a comment |
add a comment |
it's very easy to extract audio files from *.mkv files. I suggest you to install MKVToolNix, from here > https://mkvtoolnix.download/ and follow but I'll outline what you have to do:
- open your terminal (Ctrl+Alt+t)
run this commands:
wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -
sudo apt update
sudo apt install mkvtoolnix mkvtoolnix-gui
after that you can open with right click you mkv files and untick all except audio files. After that you can save your mpa (MP4 audio only) file(s) somewhere.
Here, I've compiled video to help you :)
add a comment |
it's very easy to extract audio files from *.mkv files. I suggest you to install MKVToolNix, from here > https://mkvtoolnix.download/ and follow but I'll outline what you have to do:
- open your terminal (Ctrl+Alt+t)
run this commands:
wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -
sudo apt update
sudo apt install mkvtoolnix mkvtoolnix-gui
after that you can open with right click you mkv files and untick all except audio files. After that you can save your mpa (MP4 audio only) file(s) somewhere.
Here, I've compiled video to help you :)
add a comment |
it's very easy to extract audio files from *.mkv files. I suggest you to install MKVToolNix, from here > https://mkvtoolnix.download/ and follow but I'll outline what you have to do:
- open your terminal (Ctrl+Alt+t)
run this commands:
wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -
sudo apt update
sudo apt install mkvtoolnix mkvtoolnix-gui
after that you can open with right click you mkv files and untick all except audio files. After that you can save your mpa (MP4 audio only) file(s) somewhere.
Here, I've compiled video to help you :)
it's very easy to extract audio files from *.mkv files. I suggest you to install MKVToolNix, from here > https://mkvtoolnix.download/ and follow but I'll outline what you have to do:
- open your terminal (Ctrl+Alt+t)
run this commands:
wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -
sudo apt update
sudo apt install mkvtoolnix mkvtoolnix-gui
after that you can open with right click you mkv files and untick all except audio files. After that you can save your mpa (MP4 audio only) file(s) somewhere.
Here, I've compiled video to help you :)
edited Dec 19 at 22:14
mature
1,507422
1,507422
answered Dec 18 at 2:54
Kresimir Pendic
80179
80179
add a comment |
add a comment |
user9344882 is a new contributor. Be nice, and check out our Code of Conduct.
user9344882 is a new contributor. Be nice, and check out our Code of Conduct.
user9344882 is a new contributor. Be nice, and check out our Code of Conduct.
user9344882 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2faskubuntu.com%2fquestions%2f1102707%2fhow-do-i-extraxt-audio-files-from-mkv-files-to-delet-the-music-in-the-backgroun%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