Bug 133491 - Configuration of module "generic media player": Please add more media types that can be transferred directly
Summary: Configuration of module "generic media player": Please add more media types t...
Status: RESOLVED FIXED
Alias: None
Product: amarok
Classification: Applications
Component: Collections/Media Devices (show other bugs)
Version: 1.4.2
Platform: Ubuntu Linux
: NOR wishlist
Target Milestone: ---
Assignee: Amarok Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-03 12:49 UTC by samuel_idm
Modified: 2006-10-21 15:00 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description samuel_idm 2006-09-03 12:49:45 UTC
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.
Comment 1 samuel_idm 2006-09-03 15:27:44 UTC
Of cource, the nicest thing would be th epossibility to choose a "media player running rockbox". 
Comment 2 Martin Aumueller 2006-10-21 14:57:52 UTC
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.
Comment 3 Martin Aumueller 2006-10-21 15:00:44 UTC
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;