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.

  • fubo@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 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.

    • SubArcticTundra
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      ffmpeg -i video.mp4 audio.wav
      If unsure, ask ChatGPT to generate the command for you.