Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

pythonで動画を結合

Last updated at Posted at 2021-12-10

ffmpegのインストール

windowsはこの外部サイトを参考にffmpegをインストールしてください。

ffmpegのインストール(macはこんな感じでできます)

まずはHomebrewというmacのソフトウェアの管理システムをインストールします。
下記をコピーして、ターミナルで実行してください。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

下記のコマンドでffmegをインストールします。

brew install ffmpeg

仮想環境を作る

最新のpythonだと動かない可能性があるので、動作が確認されているpython3.8の環境を別に作ります。
py_mvresizeという仮想環境を作りましょう。

conda create --name py_mvresize python=3.8

仮想環境をアクティブにする

conda activate py_mvresize

movipyのインストール

macはターミナル、winはコマンドプロンプトでmoviepyをインストール

pip install moviepy==1.0.3

Pillowをインストール

画像処理ライブラリのPillowをインストールします。最新のものだと動かないので、9.5のバージョンを入れます。

pip install --force-reinstall -v "Pillow==9.5.0"

動画連結プログラム

動画連結プログラムをダウンロード

インタープリター

インタープリターは先ほど設定した仮想環境のものを設定
スクリーンショット 2023-11-30 9.14.19.png

実行

srcmovie内に撮影した動画を保存しmain.pyを実行

newmovieに新しい動画が保存されます。(インタビュー時間によっては結合に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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?