-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathffmpeg-transcode-docker.yaml
51 lines (51 loc) · 1.17 KB
/
ffmpeg-transcode-docker.yaml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'version': '1.0.0-1'
'ffmpeg': 'plex-media-server-ffmpeg/ffmpeg'
'ffprobe': 'plex-media-server-ffmpeg/ffprobe'
'log': '/config/plex-transcoder.log'
'profiles':
'mkv2mpegts_stream':
'group': 'format'
'input':
'output':
'-segment_format': 'mpegts'
'mkv2mpegts_download':
'group': 'format'
'input':
'output':
'-f': 'mpegts'
'profile_select':
'by_codec':
-
'source': 'hevc'
'target': 'h264_v4l2m2m'
'output':
'-b:v': '5M'
'-bufsize:$stream$': '10M'
'-crf:$stream$': '**REMOVE**'
'-maxrate:$stream$': '**REMOVE**'
'-x264opts:$stream$': '**REMOVE**'
-
'source': 'flac'
'target': 'aac'
'output':
'-b:$stream$': '256k'
'priority': 10
-
'source': 'eac3'
'target': 'aac'
'output':
'-b:$stream$': '256k'
'priority': 10
'by_argument':
-
'argSection': 'output'
'argName': '-segment_format'
'type': 'exact'
'value': 'matroska'
'profile': 'mkv2mpegts_stream'
-
'argSection': 'output'
'argName': '-f'
'type': 'exact'
'value': 'matroska'
'profile': 'mkv2mpegts_download'