forked from Unmanic/plugin.video_remuxer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.py
285 lines (226 loc) · 10.2 KB
/
plugin.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
plugins.__init__.py
Written by: Josh.5 <[email protected]>
Date: 28 Aug 2021, (11:55 PM)
Copyright:
Copyright (C) 2021 Josh Sunnex
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along with this program.
If not, see <https://www.gnu.org/licenses/>.
"""
import json
import logging
import mimetypes
import os
from unmanic.libs.unplugins.settings import PluginSettings
from video_remuxer.lib.ffmpeg import StreamMapper, Probe, Parser
# Configure plugin logger
logger = logging.getLogger("Unmanic.Plugin.video_remuxer")
class Settings(PluginSettings):
settings = {
"dest_container": "mkv",
}
def __init__(self, *args, **kwargs):
super(Settings, self).__init__(*args, **kwargs)
self.form_settings = {
"dest_container": self.__set_dest_container_form_settings()
}
def __set_dest_container_form_settings(self):
containers_data = self.__read_containers_data()
select_options = []
for cd_item in containers_data:
if cd_item == "template":
continue
select_options.append(
{
'value': cd_item,
'label': containers_data[cd_item].get('label'),
}
)
values = {
"label": "Set the output container",
"input_type": "select",
"select_options": select_options,
}
return values
def __read_containers_data(self):
containers_file = os.path.join(self.get_plugin_directory(), 'lib', 'containers.json')
with open(containers_file) as infile:
containers_data = json.load(infile)
return containers_data
def get_configured_container_data(self):
dest_container = self.get_setting('dest_container')
containers_data = self.__read_containers_data()
dest_container = containers_data.get(dest_container)
if not dest_container:
# Load defaults - MKV
dest_container = containers_data.get('mkv')
return dest_container
class PluginStreamMapper(StreamMapper):
def __init__(self):
super(PluginStreamMapper, self).__init__(logger, ['video', 'audio', 'subtitle', 'data', 'attachment'])
self.settings = None
self.container_data = None
def set_settings(self, settings):
self.settings = settings
def test_stream_needs_processing(self, stream_info: dict):
if not self.container_data:
self.container_data = self.settings.get_configured_container_data()
# Check if codec type is supported
codec_type = stream_info.get('codec_type', '').lower()
if codec_type not in self.container_data.get('codec_types'):
return True
# Check if the codec name is supported for this container
codec_name = stream_info.get('codec_name', '').lower()
if codec_name not in self.container_data.get('codec_names', {}).get(codec_type, []):
return True
# Stream will be copied over
return False
def custom_stream_mapping(self, stream_info: dict, stream_id: int):
ident = {
'video': 'v',
'audio': 'a',
'subtitle': 's',
'data': 'd',
'attachment': 't'
}
if not self.container_data:
self.container_data = self.settings.get_configured_container_data()
# If codec type is not supported, remove it
codec_type = stream_info.get('codec_type', '').lower()
if codec_type not in self.container_data.get('codec_types'):
return {
'stream_mapping': [],
'stream_encoding': [],
}
# If codec is not supported by the container or able to be transcoded, remove it
# Else if it is not supported by the container but is able to be transcoded, update it to the default
codec_name = stream_info.get('codec_name', '').lower()
if codec_name in self.container_data.get('remove_codec_names', {}).get(codec_type, []):
return {
'stream_mapping': [],
'stream_encoding': [],
}
elif codec_name not in self.container_data.get('codec_names', {}).get(codec_type, []):
stream_encoding = ['-c:{}:{}'.format(ident.get(codec_type), stream_id)]
# Fetch the default encoder params
default_encoder_params = self.container_data.get('default_encoder_params', {}).get(codec_type, [])
# Append to the stream encoding
stream_encoding += default_encoder_params
if not default_encoder_params:
# This container does not support this stream type and it is not configured to be able to convert it,
# Remove this stream
return {
'stream_mapping': [],
'stream_encoding': [],
}
else:
return {
'stream_mapping': ['-map', '0:{}:{}'.format(ident.get(codec_type), stream_id)],
'stream_encoding': stream_encoding,
}
# Code will never get here - throw exception if it did
raise Exception("Failed to map container remux params for stream - ({},{})".format(codec_type, codec_name))
def correct_mimetypes():
mimetypes.add_type('video/x-m4v', '.m4v')
def on_library_management_file_test(data):
"""
Runner function - enables additional actions during the library management file tests.
The 'data' object argument includes:
path - String containing the full path to the file being tested.
issues - List of currently found issues for not processing the file.
add_file_to_pending_tasks - Boolean, is the file currently marked to be added to the queue for processing.
:param data:
:return:
"""
# Get the path to the file
abspath = data.get('path')
# Get file probe
probe = Probe(logger, allowed_mimetypes=['video'])
correct_mimetypes()
if not probe.file(abspath):
# File probe failed, skip the rest of this test
return data
# Configure settings object (maintain compatibility with v1 plugins)
if data.get('library_id'):
settings = Settings(library_id=data.get('library_id'))
else:
settings = Settings()
# Get stream mapper
mapper = PluginStreamMapper()
mapper.set_settings(settings)
mapper.set_probe(probe)
# Set the input file
mapper.set_input_file(abspath)
container_data = settings.get_configured_container_data()
container_extension = container_data.get('extension')
if mapper.container_needs_remuxing(container_extension):
# Mark this file to be added to the pending tasks
data['add_file_to_pending_tasks'] = True
logger.debug("File '{}' should be added to task list. Probe found file needs to be processed.".format(abspath))
else:
logger.debug("File '{}' is already the required format.".format(abspath))
return data
def on_worker_process(data):
"""
Runner function - enables additional configured processing jobs during the worker stages of a task.
The 'data' object argument includes:
exec_command - A command that Unmanic should execute. Can be empty.
command_progress_parser - A function that Unmanic can use to parse the STDOUT of the command to collect progress stats. Can be empty.
file_in - The source file to be processed by the command.
file_out - The destination that the command should output (may be the same as the file_in if necessary).
original_file_path - The absolute path to the original file.
repeat - Boolean, should this runner be executed again once completed with the same variables.
:param data:
:return:
"""
# Default to no FFMPEG command required. This prevents the FFMPEG command from running if it is not required
data['exec_command'] = []
data['repeat'] = False
# Get the path to the file
abspath = data.get('file_in')
# Get file probe
probe = Probe(logger, allowed_mimetypes=['video'])
correct_mimetypes()
if not probe.file(abspath):
# File probe failed, skip the rest of this test
return data
# Configure settings object (maintain compatibility with v1 plugins)
if data.get('library_id'):
settings = Settings(library_id=data.get('library_id'))
else:
settings = Settings()
# Get stream mapper
mapper = PluginStreamMapper()
mapper.set_settings(settings)
mapper.set_probe(probe)
# Set the input file
mapper.set_input_file(abspath)
container_data = settings.get_configured_container_data()
container_extension = container_data.get('extension')
if mapper.container_needs_remuxing(container_extension):
# Map streams (copy from source to destination)
mapper.streams_need_processing()
# Set the input file
mapper.set_input_file(abspath)
# Set the output file
split_file_out = os.path.splitext(data.get('file_out'))
new_file_out = "{}.{}".format(split_file_out[0], container_extension.lstrip('.'))
mapper.set_output_file(new_file_out)
data['file_out'] = new_file_out
# Get generated ffmpeg args
ffmpeg_args = mapper.get_ffmpeg_args()
# Apply ffmpeg args to command
data['exec_command'] = ['ffmpeg']
data['exec_command'] += ffmpeg_args
# Set the parser
parser = Parser(logger)
parser.set_probe(probe)
data['command_progress_parser'] = parser.parse_progress
return data