Version: 1.4.2 (using KDE KDE 3.5.4) Installed from: Ubuntu Packages OS: Linux I run Rockbox on an iriver h140 and can thus play .mpc files and other file formats. (These are supported by rockbox: http://www.rockbox.org/twiki/bin/view/Main/SoundCodecs#Current_status ) When configuring the h140 with the "generic media player" module in Amarok, I can not choose to copy .mcp-files directly to the media device ("die folgenden Formate werden direkt übertragen"). Since they are not in the list, Amarok wants to re-encode them. The same goes for .ape-files. Please add then to the list of directly transferable files, or add a custom field. Oh, and for filetypes that need re-encoding, an option to encode them to .ogg would be nice. Thanks a lot.
Of cource, the nicest thing would be th epossibility to choose a "media player running rockbox".
There is an option to choose ogg as a re-encoding target. However, ogg has to be within the list of file types to transfer directly.
SVN commit 597721 by aumuell: ape and mpc as additional choice for supported file type on generic media device BUG: 133491 M +2 -0 ChangeLog M +1 -1 src/mediadevice/generic/genericmediadeviceconfigdialog.ui.h --- trunk/extragear/multimedia/amarok/ChangeLog #597720:597721 @@ -29,6 +29,8 @@ CHANGES: + * Add .ape and .mpc to possible file types supported by a generic media + device. (BR 133491) * Move button for saving current playlist from playlist browser toolbar to playlist toolbar. (BR 129300) * Run 'kdeeject -q devicenode' when no post-disconnect command has been --- trunk/extragear/multimedia/amarok/src/mediadevice/generic/genericmediadeviceconfigdialog.ui.h #597720:597721 @@ -120,7 +120,7 @@ QStringList allTypes; allTypes << "mp3" << "ogg" << "wma" << "mp4" << "aac" << "m4a" << "ac3"; allTypes << "wav" << "flac" << "asf" << "asx" << "mpg" << "mp4v" << "mpeg"; - allTypes << "aa" << "3gp" << "mp2"; + allTypes << "aa" << "3gp" << "mp2" << "ape" << "mpc"; QStringList unsupported; QComboBox *convert = m_convertComboBox;