Gnome Play Video in Totem
mwheatland
Source i (link to git-repo or to original if based on someone elses unmodified work):
Other Amarok 1.x Scripts:
© 2025 store.kde.org - The official KDE Store
All rights reserved. All trademarks are copyright by their respective owners. All contributors are responsible for their uploads.
Ratings & Comments
3 Comments
hello. Your script is very great, but the quality of the output (when I trancode to an ipod) is always 64kbps. I want to convert my files to 128 kbps. Who I can get this? pd: sorry but I speak spanish and my english is no so good xDDD
64 kbps is, indeed quite poor. You can edit the script (right-click on the script name in the script manager and hit edit). At approximately line 105 you'll see the call to ffmpeg. You can change it from: error=`ffmpeg -i "$file" "$outfile" 2>&1` to error=`ffmpeg -i "$file" -ab 128 "$outfile" 2>&1` in order to get 128 kb/s, etc.
64 kbps is, indeed quite poor. You can edit the script (right-click on the script name in the script manager and hit edit). At approximately line 105 you'll see the call to ffmpeg. You can change it from: error=`ffmpeg -i "$file" "$outfile" 2>&1` to error=`ffmpeg -i "$file" -ab 128 "$outfile" 2>&1` in order to get 128 kb/s, etc.