rusty-snake's Tips & Tricks

Collection of useful commands and configs.

View on GitHub
21 July 2023

FFmpeg Commands

by rusty-snake

Convert a Video DVD to mp4

ffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB|VTS_01_3.VOB|VTS_01_4.VOB" output.mp4

Convert H.265/HEVC to H.264/MPEG-4

because OpenShot crashes when adding a h265 video to a project.

ffmpeg -i input.mp4 -c:v libx264 -c:a copy output.mp4

Fix XING VBR Header of a mp3 file

ffmpeg -i original-track.mp3 -acodec copy fixed-track.mp3

Horizontally flip a video

ffmpeg -i input.mp4 -vf hflip -c:a copy

Python script for batch processing:

#!/usr/bin/python3

import os
import os.path
import subprocess


for file in os.listdir():
    stem, ext = os.path.splitext(os.path.basename(file))
    if stem.endswith(".hflip"):
        continue
    subprocess.run(
        [
            "ffmpeg",
            "-i",
            file,
            "-vf",
            "hflip",
            "-c:a",
            "copy",
            stem + ".hflip" + ext,
        ],
        check=True,
    )
tags: