1
2

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 5 years have passed since last update.

App Previewsのメモ

Last updated at Posted at 2020-04-18

参考リンク

概要
https://developer.apple.com/jp/app-store/app-previews/
シミュレータの動画撮影方法
https://stackoverflow.com/questions/25797990/capture-ios-simulator-video-for-app-preview
iMovieでの編集方法
https://developer.apple.com/jp/support/imovie/
必要なサイズ
https://help.apple.com/app-store-connect/#/devd1093d90d

動画の録画

実機の場合は公式を参考に
https://developer.apple.com/jp/support/app-previews/

シミュレータの場合はこんな感じ

xcrun simctl io booted recordVideo file-name.mov

必要に応じてQuickTimePlayerでトリムする。

iMovieで編集

公式とかYoutubeで使い方覚えながら編集する。
サイズを調整したい場合は先頭にローンチスクリーンとかの静止画を入れる。

フリーズフレームとタイトルをよく使う。トランジションも。

無音化

音が無いままアップロードするとエラーになる。
こちらを参考にさせていただきました。


ffmpeg -i src.mov -f lavfi -i aevalsrc=0 -c:v copy -map 0:0 -map 1:0 -shortest -ac 2 -strict -2 dst.mov
1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?