Via https://mastodon.gamedev.place/@zeh/110851781460641259

Use FFmpeg recipes without fiddling with the command line!

FFmpeg.app is a web-based front end to FFmpeg, the free and open-source application and libraries for processing of video and audio files. Its purpose is to serve as an easy front-end to this powerful tool, so anybody can discover and use it with no setup (or command-line access) necessary.

  • grathium@mastodon.social
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    It does, I did it just this morning with the prompt:

    “Give me a Linux command to convert a directory of .wav files to .flac files”

    Gave me the result:

    for file in *.wav; do ffmpeg -i “$file” -c:a flac “${file%.wav}.flac”; done