일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- GIT
- swift
- 날짜
- Unity
- PyQt
- MS-SQL
- Excel
- ASP
- 함수
- ubuntu
- PyQt5
- node.js
- 다이어트
- mssql
- Linux
- python
- sqlite
- 맛집
- javascript
- PER
- 리눅스
- 유니티
- flutter
- tensorflow
- pandas
- urllib
- IOS
- 라즈베리파이
- MySQL
- port
목록FFMPEG (3)
아미(아름다운미소)
ffmpeg -formats 명령으로 지원되는 샘플 형식 목록을 볼 수 있습니다. $ ffmpeg -formats | grep PCM DE alaw PCM A-law DE f32be PCM 32-bit floating-point big-endian DE f32le PCM 32-bit floating-point little-endian DE f64be PCM 64-bit floating-point big-endian DE f64le PCM 64-bit floating-point little-endian DE mulaw PCM mu-law DE s16be PCM signed 16-bit big-endian DE s16le PCM signed 16-bit little-endian DE s24be PCM sig..
FFmpeg 옵션 코드 입니다. 입력부분은 인코딩설정-매개변수 창에서 코드 입력 수정 하여 사용하실수 있습니다. -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..
subprocess call ffmpeg (command line) # -*- coding: utf-8 -*- ''' Created on 2018. 8. 14. @author: bhm ''' import os from subprocess import call os.chdir('D://ffmpeg/bin/') call('ffmpeg -i file.mp3 -c:a g723_1 -ar 8000 -ac 1 -b:a 6.3K output.wav', shell=True)