2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

python-ffmpegでmp4動画のトリミングをする

Posted at

やりたいこと

mp4形式の動画の特定領域を切り出したい。

手段

pythonのffmpegライブラリを使用した。

コード

入力ファイルパス、トリミング領域を指定すると入力ファイルと同じ階層にトリミングされたファイルが生成される。

trimming.py
import ffmpeg

def video_trimming(input_file_path, start_x, start_y, w, h):
    """
    input_file_path # ファイルの絶対パス
    start_x = 850  # 切り取りたい区画のx座標(px)
    start_y = 500  # 切り取りたい区画のy座標(px)
    width = 700  # 切り取りたい区画の幅(px)
    height = 580  # 切り取りたい区画の高さ(px)
    """

    # トリミングファイル・パラメータ指定
    stream = ffmpeg.input(input_file_path)
    stream = ffmpeg.crop(stream, start_x, start_y, w, h)

    # 出力ファイル名生成
    output_file_str = input_file_path.split(".")
    output_file_name = output_file_str[0] + "_trimed." + output_file_str[1]
    stream = ffmpeg.output(stream, output_file_name)

    # 実行(ファイルがあると上書き)
    ffmpeg.run(stream, overwrite_output=True)

    return
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?