Skip to content

Commit

Permalink
PSP format fixes (#19660)
Browse files Browse the repository at this point in the history
Changed PSP format to be 320x240.  Removed the -s parameter from the
paramaters list, we add that ourselves now.
  • Loading branch information
Ben Dean-Kawamura committed Oct 24, 2012
1 parent 367e167 commit b23c109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mvc/resources/converters/others.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class PlaystationPortable(FFmpegConverterInfo):
media_type = 'other'
extension = 'mp4'
parameters = ('-s 320x240 -b 512000 -ar 24000 -ab 64000 '
parameters = ('-b 512000 -ar 24000 -ab 64000 '
'-f psp -r 29.97').split()


Expand All @@ -14,7 +14,7 @@ class KindleFire(FFmpegConverterInfo):
'-preset slow -f mp4 -crf 22').split()


psp = PlaystationPortable('Playstation Portable', 480, 320)
psp = PlaystationPortable('Playstation Portable', 320, 240)
kindle_fire = KindleFire('Kindle Fire', 1224, 600)

converters = [psp, kindle_fire]

0 comments on commit b23c109

Please sign in to comment.