일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- aws
- Java
- macos
- ffmpeg
- deployment
- android studio
- Sysinternals
- RTMP
- Flutter
- Windows10
- Kubernetes
- docker
- Android
- golang
- dart
- Pod
- Python
- VSCode
- spring cloud config
- ebpf
- nginx-media-server
- namespace
- 행정구역분류
- service
- kubectl
- configmap
- aws cli
- wireshark
- HLS
- Shell script
Archives
- Today
- Total
목록mp4 (1)
woonizzooni
ffmpeg과 동영상 파일로 rtmp 송출하기
ffmpeg의 stdin을 막고, mp4파일을 소스로 반복하여 송출하도록 함. ffmpeg -nostdin -re -stream_loop -1 -i ~/Movies/sample_h264_aac.mp4 \ -c:v copy -c:a copy \ -f flv "rtmp://localhost/live/test" 위 명령은 mp4파일의 video코덱이 h264, audio코덱이 aac일 경우의 예임. 만약, adobe rtmp스펙이 지원하지 않는 - video코덱이거나 (ex. h265) - audio코덱일 경우 (ex. ac3 등) 각각 h264코덱과 aac코덱으로 트랜스코딩을 하도록 하자. ex) -c:v libx -c:v libx264 ... -c:a libfdk_aac -b:a 128k -ar 44100..
FFmpeg
2020. 11. 8. 19:19