How do I extraxt audio files from mkv files? TO DELET THE MUSIC IN THE BACKGROUND












2














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.




  1. What software I can use?

  2. 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)










share|improve this question









New contributor




user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    2














    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.




    1. What software I can use?

    2. 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)










    share|improve this question









    New contributor




    user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      2












      2








      2


      0





      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.




      1. What software I can use?

      2. 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)










      share|improve this question









      New contributor




      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      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.




      1. What software I can use?

      2. 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






      share|improve this question









      New contributor




      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited Dec 20 at 7:52





















      New contributor




      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Dec 18 at 2:25









      user9344882

      112




      112




      New contributor




      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      user9344882 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          2 Answers
          2






          active

          oldest

          votes


















          3














          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.






          share|improve this answer










          New contributor




          NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


























            2














            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 :)



            enter image description here






            share|improve this answer























              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.










              draft saved

              draft discarded


















              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









              3














              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.






              share|improve this answer










              New contributor




              NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.























                3














                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.






                share|improve this answer










                New contributor




                NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





















                  3












                  3








                  3






                  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.






                  share|improve this answer










                  New contributor




                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  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.







                  share|improve this answer










                  New contributor




                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer








                  edited Dec 20 at 10:28





















                  New contributor




                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered Dec 19 at 23:07









                  NicolasG

                  314




                  314




                  New contributor




                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  NicolasG is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.

























                      2














                      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 :)



                      enter image description here






                      share|improve this answer




























                        2














                        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 :)



                        enter image description here






                        share|improve this answer


























                          2












                          2








                          2






                          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 :)



                          enter image description here






                          share|improve this answer














                          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 :)



                          enter image description here







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Dec 19 at 22:14









                          mature

                          1,507422




                          1,507422










                          answered Dec 18 at 2:54









                          Kresimir Pendic

                          80179




                          80179






















                              user9344882 is a new contributor. Be nice, and check out our Code of Conduct.










                              draft saved

                              draft discarded


















                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              How did Captain America manage to do this?

                              迪纳利

                              南乌拉尔铁路局