0
0

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.

Ubuntu の動画編集ソフト shotcut で作成した動画を Twitter に上げて失敗する場合の対処方

Last updated at Posted at 2021-02-17

Ubuntu の動画編集ソフト shotcut で作成した動画を Twitter に上げて失敗する場合の対処方です。

まずは shotcut のインストールの仕方

sudo apt install libsdl2-2.0-0 ;
sudo snap install shotcut --classic ;

起動画面(結構フィルターがあります)
Screenshot from 2021-02-17 19-35-22.png
動画を書き出す際に mp4 に設定をし h264 のコーデックを「libx264」に指定する必要があります。

また、もし既存の動画をアップしたいは場合は、下記コマンドで変換して対応可能です。

ffmpeg -i input.avi -vcodec libx264 -pix_fmt yuv420p -strict -2 -acodec aac output.mp4 ;

# 横幅を640にして時間を2分20秒にする場合
ffmpeg -i input.avi -vcodec libx264 -pix_fmt yuv420p -strict -2 -acodec aac -vf scale=640:-1 -t 140 output.mp4 ; 

アップロードの結果(キャプチャ画面)
FireShot _ Twitter - twitter.com.png
他の制限事項

項目
動画形式 MP4(H264形式、AACオーディオ)
動画サイズ 512MBまで
動画の時間 2分20秒まで
最小解像度 32 x 32から
最大解像度 1920 x 1200、または1200 x 1900まで
縦横比 1:2.39 ~ 2.39:1
最大フレームレート 40fpsまで
最大ビットレート 25Mbpsまで
###参考リンク
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?