
PSP convert
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
darxed
11 years ago
[Desktop Action PSPconvert-Generate-Frame]
Name=Generate-Frame
Icon=package_multimedia
Exec=konsole --noframe --noclose --notabbar -e ffmpeg -y -i "%u" -f image2 -ss 5 -vframes 1 -r 1 -s 160x120 -an "%u.thm"
That way, if a user wants a thumbnail, he uses this, if not, well the app does not mandate anything. You should add it to your app to make it more complete
Cheers and Thanks again.
Report
albertinux
12 years ago
In my Fedora 8 [2.6.25.14-69.fc8 x86_64],
to solve this error:
" Unknown encoder 'h264' "
I apply this small change:
vim PSPconvert.desktop
:%s/ h264 / libx264 /
:wq
Now work fine!
Thank you.
Report
454casull
13 years ago
One suggestion.
Add some sort of detection to see if ffmpeg is older or newer.
On the command line for codecs
Old uses h264 xvid and aac
New uses libx264 libxvid and libfaac
Good job! A nice QUICK solution for encoding PSP videos.
Report
frugo3000
12 years ago
Report