일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- PyQt
- mssql
- 라즈베리파이
- Unity
- 리눅스
- Excel
- MySQL
- javascript
- pandas
- 날짜
- GIT
- 함수
- ASP
- 유니티
- urllib
- IOS
- port
- 맛집
- tensorflow
- python
- PER
- swift
- ubuntu
- Linux
- MS-SQL
- flutter
- PyQt5
- 다이어트
- sqlite
- node.js
아미(아름다운미소)
FFmpeg 옵션 본문
FFmpeg 옵션 코드 입니다.
입력부분은 인코딩설정-매개변수 창에서 코드 입력 수정 하여 사용하실수 있습니다.
ffmpeg.txt
-b set bitrate (in bits/s) (비트레이트 조정)
-vb set bitrate (in bits/s) (가변비트레이트 조정)
-vframes number set the number of video frames to record
-r rate set frame rate (Hz value, fraction or abbreviation)(프레임 레이트 조정)
-s size set frame size (WxH or abbreviation)(프레임 사이즈 조정)
-aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)(비율조정 4:3, 16:9)
-croptop size set top crop band size (in pixels)(상단 잘라낼 사이즈 설정 - 단위 픽셀)
-cropbottom size set bottom crop band size (in pixels)(하단 잘라낼 사이즈 설정- 단위 필셀)
-cropleft size set left crop band size (in pixels)(왼쪽 잘라낼 사이즈 설정 - 단위 픽셀)
-cropright size set right crop band size (in pixels)(오른쪽 잘라낼 사이즈 설정 - 단위 필셀)
-padtop size set top pad band size (in pixels)
-padbottom size set bottom pad band size (in pixels)
-padleft size set left pad band size (in pixels)
-padright size set right pad band size (in pixels)
-padcolor color set color of pad bands (Hex 000000 thru FFFFFF)
-vn disable video (비디오 사용하지 않음)
-vcodec codec force video codec ('copy' to copy stream)
(강제적으로 비디오 코덱을 설정함 'copy'는 스트림을 복사해서 사용함)
-sameq use same video quality as source (implies VBR)(소스와 같은 퀄리티를 사용함)
-pass n select the pass number (1 or 2)(사용할 패스를 설정 1,2)
-passlogfile file select two pass log file name(2패스 선택시 로그 파일의 이름을 설정)
-newvideo add a new video stream to the current output stream
less..
Audio options:(오디오 옵션)
-ab set bitrate (in bits/s)(초당 비트레이트를 설정 ex)128, 192, 320 etc)
-aframes number set the number of audio frames to record(녹음될 오디오 프레임들의 갯수를 설정함)
-aq quality set audio quality (codec-specific)(오디오의 질을 설정함)
-ar rate set audio sampling rate (in Hz)(오디오 샘플림을 설정함 32000,44000)
-ac channels set number of audio channels(오디오 채널을 설정함 1-mono 2-stereo)
-an disable audio (오디오를 사용하지 않음)
-acodec codec force audio codec ('copy' to copy stream)(음성 코덱을 설정함 'copy'는 복사)
-vol volume change audio volume (256=normal)(볼륨을 설정함)
-newaudio add a new audio stream to the current output stream(출력할 오디오 스트림을 현재 오디오 스트림에 추가함)
-alang code set the ISO 639 language code (3 letters) of the current audio stream
Advanced options: (
-map file:stream[:syncfile:syncstream] set input stream mapping
-map_meta_data outfile:infile set meta data information of outfile from infile
-benchmark add timings for benchmarking
-dump dump each input packet
-hex when dumping packets, also dump the payload
-re read input at native frame rate
-loop_input loop (current only works with images)
-loop_output number of times to loop output in formats that support looping (0 loops forever)
-threads count thread count (쓰레드의 수를 지정)
-vsync video sync method(비디오 싱크 도구 ex) -vsync 1)
-async audio sync method(오디오 싱크 도구 ex) -async 1)
-adrift_threshold audio drift threshold
-vglobal video global header storage type
-copyts copy timestamps
-shortest finish encoding within shortest input
-dts_delta_threshold timestamp discontinuity delta threshold
-programid desired program number
-muxdelay seconds set the maximum demux-decode delay
-muxpreload seconds set the initial demux-decode delay
-sbsf bitstream filter
'랭귀지 > python' 카테고리의 다른 글
abs (0) | 2018.08.20 |
---|---|
python open 함수 (0) | 2018.08.19 |
subprocess call ffmpeg (command line) (0) | 2018.08.16 |
[python] 특정 디렉토리의 파일 카운트 (0) | 2018.08.15 |
Python 파일, 디렉토리 존재 여부 확인 (0) | 2018.08.14 |