I’m making an animatic, and want to know how to extract audio from a video and turn it into a file I can insert into a movie making program.

  • @IIII
    link
    English
    171 year ago

    With ffmpeg installed, you can extract just the audio. Here is a sample command usage:

    ffmpeg -i video_file.mp4 audio_file.mp3

  • @IMongoose
    link
    English
    41 year ago

    What movie making program are you using? You should be able to just put in the video and disable or delete the video track, only leaving the audio.

  • @fubo
    link
    English
    21 year ago

    If you’re comfortable with the command line, you could use a tool like ffmpeg to do this on your own computer. You might need to know the format of the video file and the format that you want to make the audio file, though.

  • @raeliz
    link
    English
    21 year ago

    The most user friendly way is to download Shutter Encoder and drag / drop your file into it and select MP3 / Wav from the drop down menu.

  • @vimdiesel
    link
    English
    21 year ago

    Use handbrake command line. References available on the web. Ffmpeg would also work