コマンドラインツール ffmpeg の有用なコマンド:
FFmpeg ダウンロード: https://www.ffmpeg.org/download.html
| // PersistentAmongPlayModeAttribute.cs | |
| // http://kan-kikuchi.hatenablog.com/entry/PersistentAmongPlayModeAttribute | |
| // | |
| // Created by kan.kikuchi on 2019.05.14. | |
| using UnityEngine; | |
| using System; | |
| /// <summary> | |
| /// エディタ再生中に変更した値をエディタ停止後もそのまま保持する属性 |
| #!/bin/sh | |
| # White level detection script | |
| # Copyright (c) 2012 Yoichi Imai <sunnyone41@gmail.com> | |
| if [ -z "$1" ]; then | |
| echo usage: $0 image | |
| exit 1 | |
| fi | |
| FILE="$1" |
| #!/usr/bin/env python3 | |
| import pikepdf | |
| import argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('input') | |
| parser.add_argument('output') | |
| parser.add_argument('--pagelayout', type=str, default='TwoPageRight', choices=['SinglePage', 'OneColumn', 'TwoColumnLeft', 'TwoColumnRight', 'TwoPageLeft', 'TwoPageRight']) | |
| parser.add_argument('--direction', type=str, default='R2L', choices=['L2R', 'R2L']) | |
| args = parser.parse_args() |
コマンドラインツール ffmpeg の有用なコマンド:
FFmpeg ダウンロード: https://www.ffmpeg.org/download.html