Summary: | Configuration of module "generic media player": Please add more media types that can be transferred directly | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | samuel_idm |
Component: | Collections/Media Devices | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 1.4.2 | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
samuel_idm
2006-09-03 12:49:45 UTC
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; |