aboutsummaryrefslogtreecommitdiffstats
path: root/mvc/resources/converters/others.py
diff options
context:
space:
mode:
Diffstat (limited to 'mvc/resources/converters/others.py')
-rw-r--r--mvc/resources/converters/others.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/mvc/resources/converters/others.py b/mvc/resources/converters/others.py
deleted file mode 100644
index a05030f..0000000
--- a/mvc/resources/converters/others.py
+++ /dev/null
@@ -1,20 +0,0 @@
-from mvc.converter import FFmpegConverterInfo
-
-class PlaystationPortable(FFmpegConverterInfo):
- media_type = 'other'
- extension = 'mp4'
- parameters = ('-b 512000 -ar 24000 -ab 64000 '
- '-f psp -r 29.97').split()
-
-
-class KindleFire(FFmpegConverterInfo):
- media_type = 'other'
- extension = 'mp4'
- parameters = ('-acodec aac -ab 96k -vcodec libx264 '
- '-preset slow -f mp4 -crf 22').split()
-
-
-psp = PlaystationPortable('Playstation Portable', 320, 240)
-kindle_fire = KindleFire('Kindle Fire', 1224, 600)
-
-converters = [psp, kindle_fire]