Some program to change the bpm of a track?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite












Someone knows some program in Ubuntu to change the bpm of a track, retaining the tone. I've tried with Audacity, but when changing the bpm, it also changes the tone. Any idea? Maybe whit LMMS?



Thanks.







share|improve this question
















  • 1




    What about the Change Tempo tool?
    – dsstorefile1
    May 24 at 21:32














up vote
2
down vote

favorite












Someone knows some program in Ubuntu to change the bpm of a track, retaining the tone. I've tried with Audacity, but when changing the bpm, it also changes the tone. Any idea? Maybe whit LMMS?



Thanks.







share|improve this question
















  • 1




    What about the Change Tempo tool?
    – dsstorefile1
    May 24 at 21:32












up vote
2
down vote

favorite









up vote
2
down vote

favorite











Someone knows some program in Ubuntu to change the bpm of a track, retaining the tone. I've tried with Audacity, but when changing the bpm, it also changes the tone. Any idea? Maybe whit LMMS?



Thanks.







share|improve this question












Someone knows some program in Ubuntu to change the bpm of a track, retaining the tone. I've tried with Audacity, but when changing the bpm, it also changes the tone. Any idea? Maybe whit LMMS?



Thanks.









share|improve this question











share|improve this question




share|improve this question










asked May 24 at 21:08









louiesanchezdj

5217




5217







  • 1




    What about the Change Tempo tool?
    – dsstorefile1
    May 24 at 21:32












  • 1




    What about the Change Tempo tool?
    – dsstorefile1
    May 24 at 21:32







1




1




What about the Change Tempo tool?
– dsstorefile1
May 24 at 21:32




What about the Change Tempo tool?
– dsstorefile1
May 24 at 21:32










2 Answers
2






active

oldest

votes

















up vote
1
down vote



accepted










Actually, you can in Audacity.



Referring from the manual, you can access it by Effect > Change Tempo.



Screenshot






share|improve this answer





























    up vote
    0
    down vote













    Playback changes (rather than permanent changes to the track itself) can be accomplished quite easily using the command line MPlayer and the 'scaletempo' filter. Typical syntax is (halving the playback speed in this case):



    mplayer -af scaletempo -speed 0.5 input.mp4


    From here playback speed can be adjusted during playback using the default '' and '' keys. This filter is unfortunately not available in the best gui for MPlayer: SMPlayer.



    Permanent changes to a track's speed can be accomplished with the use of FFmpeg: using the 'setpts' video filter and the 'atempo' audio filter. The following syntax doubles both audio and video speed without altering pitch:



    ffmpeg -i input.mp4 
    -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]"
    -map "[v]" -map "[a]"
    output.mp4


    And increments are possible for both speeding up and slowing down a track...



    References:




    • Top 10 Tricks and Tips for the svn MPlayer My own page :). Have a look at Tip 1: Using 'scaletempo'...


    • How to speed up / slow down a video Solid information on the subject from the FFmpeg Trac site...





    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',
      convertImagesToLinks: true,
      noModals: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );








       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1039987%2fsome-program-to-change-the-bpm-of-a-track%23new-answer', 'question_page');

      );

      Post as a guest






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      1
      down vote



      accepted










      Actually, you can in Audacity.



      Referring from the manual, you can access it by Effect > Change Tempo.



      Screenshot






      share|improve this answer


























        up vote
        1
        down vote



        accepted










        Actually, you can in Audacity.



        Referring from the manual, you can access it by Effect > Change Tempo.



        Screenshot






        share|improve this answer
























          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          Actually, you can in Audacity.



          Referring from the manual, you can access it by Effect > Change Tempo.



          Screenshot






          share|improve this answer














          Actually, you can in Audacity.



          Referring from the manual, you can access it by Effect > Change Tempo.



          Screenshot







          share|improve this answer














          share|improve this answer



          share|improve this answer








          answered May 25 at 9:32


























          community wiki





          Aryo Adhi























              up vote
              0
              down vote













              Playback changes (rather than permanent changes to the track itself) can be accomplished quite easily using the command line MPlayer and the 'scaletempo' filter. Typical syntax is (halving the playback speed in this case):



              mplayer -af scaletempo -speed 0.5 input.mp4


              From here playback speed can be adjusted during playback using the default '' and '' keys. This filter is unfortunately not available in the best gui for MPlayer: SMPlayer.



              Permanent changes to a track's speed can be accomplished with the use of FFmpeg: using the 'setpts' video filter and the 'atempo' audio filter. The following syntax doubles both audio and video speed without altering pitch:



              ffmpeg -i input.mp4 
              -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]"
              -map "[v]" -map "[a]"
              output.mp4


              And increments are possible for both speeding up and slowing down a track...



              References:




              • Top 10 Tricks and Tips for the svn MPlayer My own page :). Have a look at Tip 1: Using 'scaletempo'...


              • How to speed up / slow down a video Solid information on the subject from the FFmpeg Trac site...





              share|improve this answer


























                up vote
                0
                down vote













                Playback changes (rather than permanent changes to the track itself) can be accomplished quite easily using the command line MPlayer and the 'scaletempo' filter. Typical syntax is (halving the playback speed in this case):



                mplayer -af scaletempo -speed 0.5 input.mp4


                From here playback speed can be adjusted during playback using the default '' and '' keys. This filter is unfortunately not available in the best gui for MPlayer: SMPlayer.



                Permanent changes to a track's speed can be accomplished with the use of FFmpeg: using the 'setpts' video filter and the 'atempo' audio filter. The following syntax doubles both audio and video speed without altering pitch:



                ffmpeg -i input.mp4 
                -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]"
                -map "[v]" -map "[a]"
                output.mp4


                And increments are possible for both speeding up and slowing down a track...



                References:




                • Top 10 Tricks and Tips for the svn MPlayer My own page :). Have a look at Tip 1: Using 'scaletempo'...


                • How to speed up / slow down a video Solid information on the subject from the FFmpeg Trac site...





                share|improve this answer
























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  Playback changes (rather than permanent changes to the track itself) can be accomplished quite easily using the command line MPlayer and the 'scaletempo' filter. Typical syntax is (halving the playback speed in this case):



                  mplayer -af scaletempo -speed 0.5 input.mp4


                  From here playback speed can be adjusted during playback using the default '' and '' keys. This filter is unfortunately not available in the best gui for MPlayer: SMPlayer.



                  Permanent changes to a track's speed can be accomplished with the use of FFmpeg: using the 'setpts' video filter and the 'atempo' audio filter. The following syntax doubles both audio and video speed without altering pitch:



                  ffmpeg -i input.mp4 
                  -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]"
                  -map "[v]" -map "[a]"
                  output.mp4


                  And increments are possible for both speeding up and slowing down a track...



                  References:




                  • Top 10 Tricks and Tips for the svn MPlayer My own page :). Have a look at Tip 1: Using 'scaletempo'...


                  • How to speed up / slow down a video Solid information on the subject from the FFmpeg Trac site...





                  share|improve this answer














                  Playback changes (rather than permanent changes to the track itself) can be accomplished quite easily using the command line MPlayer and the 'scaletempo' filter. Typical syntax is (halving the playback speed in this case):



                  mplayer -af scaletempo -speed 0.5 input.mp4


                  From here playback speed can be adjusted during playback using the default '' and '' keys. This filter is unfortunately not available in the best gui for MPlayer: SMPlayer.



                  Permanent changes to a track's speed can be accomplished with the use of FFmpeg: using the 'setpts' video filter and the 'atempo' audio filter. The following syntax doubles both audio and video speed without altering pitch:



                  ffmpeg -i input.mp4 
                  -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]"
                  -map "[v]" -map "[a]"
                  output.mp4


                  And increments are possible for both speeding up and slowing down a track...



                  References:




                  • Top 10 Tricks and Tips for the svn MPlayer My own page :). Have a look at Tip 1: Using 'scaletempo'...


                  • How to speed up / slow down a video Solid information on the subject from the FFmpeg Trac site...






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited May 25 at 9:18

























                  answered May 24 at 22:49









                  andrew.46

                  20.2k1463138




                  20.2k1463138






















                       

                      draft saved


                      draft discarded


























                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1039987%2fsome-program-to-change-the-bpm-of-a-track%23new-answer', 'question_page');

                      );

                      Post as a guest













































































                      Popular posts from this blog

                      Trouble downloading packages list due to a “Hash sum mismatch” error

                      How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

                      How do I move numbers in filenames, in a batch renaming operation?