About 44,900 results
Open links in new tab
  1. How do I set up and use FFmpeg in Windows?

    FFmpeg is a multimedia framework which can process almost all common and many uncommon media formats. It has thousands of to capture, decode, encode, modify, combine, and stream …

  2. Cutting multimedia files based on start and end time using ffmpeg

    I tried to cut the video using the start and end time of the video by using the following command: ffmpeg -ss 00:00:03 -t 00:00:08 -i movie.mp4 -acodec copy -vcodec copy -async 1 cut.mp4 By …

  3. How can I extract audio from video with ffmpeg? - Stack Overflow

    ffmpeg has a default stream selection behavior that will select 1 stream per stream type (1 video, 1 audio, 1 subtitle, 1 data). -vn is an old, legacy option. It excludes video from the default …

  4. Could not find com.arthenica:ffmpeg-kit-full:6.0-2 [closed]

    Apr 30, 2025 · I was using ffmpeg-kit for (a legacy feature) creating a thumbnail from a video. I am replacing ffmpeg-kit dependency by Coil, which covers the same feature in a simpler way

  5. How to concatenate two MP4 files using FFmpeg? [closed]

    Feb 27, 2018 · I'm trying to concatenate two mp4 files using ffmpeg. I need this to be an automatic process hence why I chose ffmpeg. I'm converting the two files into .ts files and then …

  6. Using ffmpeg to cut audio from/to position - Stack Overflow

    Oct 1, 2017 · I need to cut parts from an audio file from position to position. When I tried this command ffmpeg -ss 132 -t 139 -i original.mp3 new.mp3 it started at the second 132, and …

  7. Vertically or horizontally stack (mosaic) several videos using …

    Jul 19, 2012 · I have two videos of the same exact length, and I would like to use ffmpeg to stack them into one video file. How can I do this?

  8. python - "Couldn't find ffmpeg or avconv - defaulting to ffmpeg, …

    Dec 2, 2022 · 26 If you haven't installed the ffmpeg/ffprobe as @Rotem answered, you can use my ffmpeg-downloader package: pip install ffmpeg-downloader ffdl install --add-path The --add …

  9. Convert audio files to mp3 using ffmpeg - Stack Overflow

    You could use this command: ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3 Explanation of the used arguments in this example: -i - input file -vn - Disable video, to make …

  10. FFmpeg - dropping duplicate frames - Video Production Stack …

    FFmpeg knows about duplicate frames in the input video stream as it outputs a message like this: More than 1000 frames duplicated Is there some way to tell it: "Not include duplicates into the …