diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 8731bcc1..ebfd2ae7 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -57,15 +57,14 @@ def supported_formats(): stdout = stdout.decode('utf-8') stderr = stderr.decode('utf-8') version = stderr.split('\n')[0].split(' ')[2] - mp4 = 'libx264' in stdout and bool(re.compile('DEA.L. aac').findall(stdout)) return { 'version': version.split('.'), 'ogg': 'libtheora' in stdout and 'libvorbis' in stdout, 'webm': 'libvpx' in stdout and 'libvorbis' in stdout, 'vp8': 'libvpx' in stdout and 'libvorbis' in stdout, 'vp9': 'libvpx-vp9' in stdout and 'libopus' in stdout, - 'mp4': mp4, - 'h264': mp4, + 'mp4': 'libx264' in stdout and bool(re.compile('DEA.L. aac').findall(stdout)), + 'h264': 'libx264' in stdout and bool(re.compile('DEA.L. aac').findall(stdout)), } def stream(video, target, profile, info, audio_track=0, flags={}): diff --git a/pandora/config.padma.jsonc b/pandora/config.padma.jsonc index c0013f9c..c78740a9 100644 --- a/pandora/config.padma.jsonc +++ b/pandora/config.padma.jsonc @@ -794,14 +794,12 @@ "id": "user", "title": "User", "type": "string", - "columnWidth": 30, "capability": "canSeeMedia", "find": true }, { "id": "groups", "title": "Group", - "columnWidth": 30, "type": ["string"] }, {