Posted
over 11 years
ago
Ahoy, it is the time of the year again. The Google Summer of Code has just ended and here I come with the final report, joining my fellow Amarok GSoC student Konrad Zemek with his excellent posting.Newer MTP device configuration dialogBefore I sum
... [More]
things up, let me quickly mention what I've done the very last week. In short, it was full of little features and polishing.What I've done this week:Fixed small glitches in playlist tooltips (properly escape HTML markup) and in MemoryMeta (show non-compilation albums with empty album artist).Implemented reading of the device folder structure, showing the actual track path as its location (the format is compatible with kio-mtp):Implemented better fall-back when we fail to read device's storage entries (mostly because the Android device has its screen locker). It turns out that (at least Samsung's MTP stack) only blocks storage listing, but happily lists all the files and other entries. So we exploit that and infer storage ids from them. :-)Added support for specifying the Music folder, the folder where new music is put into. I was trying a handful of approaches how to make this editable by user and ended up with an editable combo box that shows root items and provider nice completion for all folders. I had to implement full QAbstractItemModel of MTP folder because of this, but it was fun. ;-)Finally added option to show only tracks under the Music folder. This is handy in order not to pick up misc music files like ringtones.Problems I've faced:KCompletion is weird and subclassing it to my liking seems impossible because few methods are virtual and other ones use private d-pointer extensively. Fortunately QCompleter is much nicer and works (pretty well) even with a hierarchic model.MTP folder/storage model is weird. There are storages (e.g. Internal memory vs. SD card) and folders, so in order to remember "put things here" you have to save either storage or folder id and whether it is a storage or a folder. I guess this is because it was designed by Microsoft...Wrapping upLet's see if the goals outlined in the initial project proposal have been met:Complete MTP Collection rewrite that removes the dependency on deprecated MediaDevice framework: CheckActual communication with the device is strictly asynchronous (threaded) in order not to block the UI: CheckZero-configuration device detection and enumeration, plug & play: CheckEnumeration of tracks on the device along with their metadata: CheckPlayback of tracks stored on devices with on-demand background loading: CheckAbility to transfer tracks out of and to MTP devices, with possibility to transcode: CheckFull playlist management (for devices that support them): No, see belowFuture workThe problem with playlists is that the ones created in the most popular music player on Androids, the Google Play Music, aren't visible through the MTP API. It needs further investigation whether and how these could be accessed. In short-term I'll try to add support for traditional playlists, but I'll need external testers for that.I haven't touched the album API at all, because my device (S III Mini with Android 4.2) happily ignores it and shows albums correctly without it. It might be however needed for proper album support on older devices. If it turns out this is the case during user testing, I'll add support for it.Ability to specify custom file naming when uploading music would be nice.Album art. My device displays album art embedded in file tags and I plan to add generic support to embed these to our transcoding/copying framework, but we could make use of the MTP thumbnail API.My current plan is to add the last round of features and to do some final polishing, then submit a review request. As soon as the work is merged into master I'll request testing here. You can of course (and are encouraged to) test my work right away by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Hey, this is my 13th weekly report describing my work on my Google Summer of Code project to rewrite MTP (Android) support in Amarok from scratch. The big item is week is transcoding.On-the-fly transcoding has come to Amarok's Android (MTP)
... [More]
collection.What I've done this week:Implemented a little configuration dialog that shows some information and lets you set some preferences (more in the future). Accessible from Collection Browser:The little wrench opens the configuration dialog.Implemented support for renaming the device (setting friendly name). The name is actually sent to the device and is also picked up by kio-mtp etc.MTP device configuration dialog. Notice the Transcode label.Implemented on-the-fly transcoding when copying/moving tracks to the device, yay! Your transcoding preferences can optionally be remembered (as is usual in Amarok) and the encoding even makes use of more than one of your processor cores. See:This is the proof that transcoding works. :-)Done small tweaks like correctly releasing the device when Amarok is closed, trying not to confuse user, improving feedback...Problems I've faced:A known bug where transcoding a track with embedded cover image creates a video ogg file, the metadata thereof (most importantly file size) are then refused to be read by Amarok.Infinite loop in libmtp when the actual size of the file you want to upload is different than what you claim. Complements interestingly the above bug.What's next:Ability to see & specify file structure of the on-device tracks.Polishing.You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Hey, this is my 13th weekly report describing my work on my Google Summer of Code project to rewrite MTP (Android) support in Amarok from scratch. The big item is week is transcoding.On-the-fly transcoding has come to Amarok's Android (MTP)
... [More]
collection.What I've done this week:Implemented a little configuration dialog that shows some information and lets you set some preferences (more in the future). Accessible from Collection Browser:The little wrench opens the configuration dialog.Implemented support for renaming the device (setting friendly name). The name is actually sent to the device and is also picked up by kio-mtp etc.MTP device configuration dialog. Notice the Transcode label.Implemented on-the-fly transcoding when copying/moving tracks to the device, yay! Your transcoding preferences can optionally be remembered (as is usual in Amarok) and the encoding even makes use of more than one of your processor cores. See:This is the proof that transcoding works. :-)Done small tweaks like correctly releasing the device when Amarok is closed, trying not to confuse user, improving feedback...Problems I've faced:A known bug where transcoding a track with embedded cover image creates a video ogg file, the metadata thereof (most importantly file size) are then refused to be read by Amarok.Infinite loop in libmtp when the actual size of the file you want to upload is different than what you claim. Complements interestingly the above bug.What's next:Ability to see & specify file structure of the on-device tracks.Polishing.You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Hey, this is my 13th weekly report describing my work on my Google Summer of Code project to rewrite MTP (Android) support in Amarok from scratch. The big item is week is transcoding.On-the-fly transcoding has come to Amarok's Android (MTP)
... [More]
collection.What I've done this week:Implemented a little configuration dialog that shows some information and lets you set some preferences (more in the future). Accessible from Collection Browser:The little wrench opens the configuration dialog.Implemented support for renaming the device (setting friendly name). The name is actually sent to the device and is also picked up by kio-mtp etc.MTP device configuration dialog. Notice the Transcode label.Implemented on-the-fly transcoding when copying/moving tracks to the device, yay! Your transcoding preferences can optionally be remembered (as is usual in Amarok) and the encoding even makes use of more than one of your processor cores. See:This is the proof that transcoding works. :-)Done small tweaks like correctly releasing the device when Amarok is closed, trying not to confuse user, improving feedback...Problems I've faced:A known bug where transcoding a track with embedded cover image creates a video ogg file, the metadata thereof (most importantly file size) are then refused to be read by Amarok.Infinite loop in libmtp when the actual size of the file you want to upload is different than what you claim. Complements interestingly the above bug.What's next:Ability to see & specify file structure of the on-device tracks.Polishing.You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Yay, I've achieved a significant goal in my GSoC project to rewrite MTP (Android) support in Amarok from scratch. Yes, it is the ability to fully manage tracks on your MTP devices.Amarok copying tracks to Android deviceWhat I've done last weeks:Added
... [More]
fancy progress bars when downloading/uploading/updating tracks on the MTP device. The progress bars are "cumulative", which means that there is only one progress bar for a given type of operation and device. Potential new jobs are added to it when it is already running. Reworked locking in order not to hold 2 locks simultaneously. There are N + 2 locks in each MTP collection (where N is the number of tracks) and holding any 2 of them simultaneously creates a potential deadlock situation (unless lock order is preserved) and may stall the UI for significant time. I managed to sneak in a fancy static (compile-time) assertion because I had to provide a copy constructor for a libmtp library object.Implemented removal of tracks on MTP device. This was rather easy, also comes with a progress feedback, but it is too fast to be screeshot-able. :)And finally implemented copying/moving tracks to the MTP device. This means that Amarok is now able to fully manage audio content of your Android phones and other MTP devices! It took a bit of effort, but it works nicely now. I've even tested crazy things like plugging the device out in the middle of a move operation to check the behaviour is correct (it is and Amarok doesn't crash nor eat your kittens (YMMV)).What's next:Allowing to specify a folder structure and show human-readable folders for existing tracks.A config dialog for each device.Transcoding (low-level part is virtually done, only needs UI).You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Yay, I've achieved a significant goal in my GSoC project to rewrite MTP (Android) support in Amarok from scratch. Yes, it is the ability to fully manage tracks on your MTP devices.Amarok copying tracks to Android deviceWhat I've done last weeks:Added
... [More]
fancy progress bars when downloading/uploading/updating tracks on the MTP device. The progress bars are "cumulative", which means that there is only one progress bar for a given type of operation and device. Potential new jobs are added to it when it is already running. Reworked locking in order not to hold 2 locks simultaneously. There are N + 2 locks in each MTP collection (where N is the number of tracks) and holding any 2 of them simultaneously creates a potential deadlock situation (unless lock order is preserved) and may stall the UI for significant time. I managed to sneak in a fancy static (compile-time) assertion because I had to provide a copy constructor for a libmtp library object.Implemented removal of tracks on MTP device. This was rather easy, also comes with a progress feedback, but it is too fast to be screeshot-able. :)And finally implemented copying/moving tracks to the MTP device. This means that Amarok is now able to fully manage audio content of your Android phones and other MTP devices! It took a bit of effort, but it works nicely now. I've even tested crazy things like plugging the device out in the middle of a move operation to check the behaviour is correct (it is and Amarok doesn't crash nor eat your kittens (YMMV)).What's next:Allowing to specify a folder structure and show human-readable folders for existing tracks.A config dialog for each device.Transcoding (low-level part is virtually done, only needs UI).You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Yay, I've achieved a significant goal in my GSoC project to rewrite MTP (Android) support in Amarok from scratch. Yes, it is the ability to fully manage tracks on your MTP devices.Amarok copying tracks to Android deviceWhat I've done last weeks:Added
... [More]
fancy progress bars when downloading/uploading/updating tracks on the MTP device. The progress bars are "cumulative", which means that there is only one progress bar for a given type of operation and device. Potential new jobs are added to it when it is already running. Reworked locking in order not to hold 2 locks simultaneously. There are N + 2 locks in each MTP collection (where N is the number of tracks) and holding any 2 of them simultaneously creates a potential deadlock situation (unless lock order is preserved) and may stall the UI for significant time. I managed to sneak in a fancy static (compile-time) assertion because I had to provide a copy constructor for a libmtp library object.Implemented removal of tracks on MTP device. This was rather easy, also comes with a progress feedback, but it is too fast to be screeshot-able. :)And finally implemented copying/moving tracks to the MTP device. This means that Amarok is now able to fully manage audio content of your Android phones and other MTP devices! It took a bit of effort, but it works nicely now. I've even tested crazy things like plugging the device out in the middle of a move operation to check the behaviour is correct (it is and Amarok doesn't crash nor eat your kittens (YMMV)).What's next:Allowing to specify a folder structure and show human-readable folders for existing tracks.A config dialog for each device.Transcoding (low-level part is virtually done, only needs UI).You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Yay, I've achieved a significant goal in my GSoC project to rewrite MTP (Android) support in Amarok from scratch. Yes, it is the ability to fully manage tracks on your MTP devices.Amarok copying tracks to Android deviceWhat I've done last weeks:Added
... [More]
fancy progress bars when downloading/uploading/updating tracks on the MTP device. The progress bars are "cumulative", which means that there is only one progress bar for a given type of operation and device. Potential new jobs are added to it when it is already running. Reworked locking in order not to hold 2 locks simultaneously. There are N + 2 locks in each MTP collection (where N is the number of tracks) and holding any 2 of them simultaneously creates a potential deadlock situation (unless lock order is preserved) and may stall the UI for significant time. I managed to sneak in a fancy static (compile-time) assertion because I had to provide a copy constructor for a libmtp library object.Implemented removal of tracks on MTP device. This was rather easy, also comes with a progress feedback, but it is too fast to be screeshot-able. :)And finally implemented copying/moving tracks to the MTP device. This means that Amarok is now able to fully manage audio content of your Android phones and other MTP devices! It took a bit of effort, but it works nicely now. I've even tested crazy things like plugging the device out in the middle of a move operation to check the behaviour is correct (it is and Amarok doesn't crash nor eat your kittens (YMMV)).What's next:Allowing to specify a folder structure and show human-readable folders for existing tracks.A config dialog for each device.Transcoding (low-level part is virtually done, only needs UI).You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Tracks being copied from Android to iPodHi, this is my (a bit late *cough*) report from week 10 describing my work on my Google Summer of Code project to rewrite MTP (Android) support in Amarok from scratch. The report from week 11 will follow
... [More]
shortly, but I'll keep them split. In week 10 I've mainly worked on copy-ability of tracks out of the MTP device.What I've done this week:Reworked how MTP devices are initialized. The device is no longer shown in the Collection Browser with 0 tracks while it is being initialized, an (abort-able) progress bar is shown instead. This is also a pre-requisite of the point below...Implemented restoring of MTP tracks from their uid. This means that if you quit Amarok with some MTP tracks in you playlist, they turn from grayed-out to playable once you plug in your device on next Amarok run. It also means that Saved Playlists (in Amarok db) with MTP tracks now work.Implemented copying of tracks from the MTP device to other Amarok collections (i.e. the first half of MtpCollectionLocation), yay! It works quite well here, although I need to add some progress bars.What's next:Copying tracks to the device, also removing tracks from the device (easy).Config dialog.You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|
Posted
over 11 years
ago
Tracks being copied from Android to iPodHi, this is my (a bit late *cough*) report from week 10 describing my work on my Google Summer of Code project to rewrite MTP (Android) support in Amarok from scratch. The report from week 11 will follow
... [More]
shortly, but I'll keep them split. In week 10 I've mainly worked on copy-ability of tracks out of the MTP device.What I've done this week:Reworked how MTP devices are initialized. The device is no longer shown in the Collection Browser with 0 tracks while it is being initialized, an (abort-able) progress bar is shown instead. This is also a pre-requisite of the point below...Implemented restoring of MTP tracks from their uid. This means that if you quit Amarok with some MTP tracks in you playlist, they turn from grayed-out to playable once you plug in your device on next Amarok run. It also means that Saved Playlists (in Amarok db) with MTP tracks now work.Implemented copying of tracks from the MTP device to other Amarok collections (i.e. the first half of MtpCollectionLocation), yay! It works quite well here, although I need to add some progress bars.What's next:Copying tracks to the device, also removing tracks from the device (easy).Config dialog.You can view and test my code by checking out gsoc branch of my personal Amarok clone repository. [Less]
|