https://bugs.gpodder.org/show_bug.cgi?id=915

           Summary: Getting podcasts to display on in-car  (Harman/Kardon)
           Product: gPodder
           Version: 2.2
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: feature request
          Priority: low
         Component: Application
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


I've got a Harman/Kardon Drive and Play, a "mobile audio solution that provides
the driver with total iPod control" which has a separate control and display
that is fixed into the car.

http://www.harmankardon.com/EN-GB/Products/Pages/ProductSupportDetails.aspx?PID=DP+1US

However, it was not picking up any podcasts, I thought this was because of poor
tagging, so I tried the patch suggested in bug 553
(https://bugs.gpodder.org/show_bug.cgi?id=533) and even suggested a code change
for that as well. Unfortunately this made no difference, but I think the change
below has fixed the problem for me. 

In add_track in sync.py the track is added to the podcast playlist, but not the
master playlist.

I added this line at:

gpod.itdb_playlist_add_track(gpod.itdb_playlist_mpl (self.itdb), track, -1)

Just after where it is added to the podcast playlist (in context below)

Don't know if this makes sense, or if you want to merge this into the main
branch? Sorry, I don't know how to create a diff file.

Ian 


        self.set_podcast_flags(track, episode)
        self.set_cover_art(track, local_filename)

        gpod.itdb_track_add(self.itdb, track, -1)
        gpod.itdb_playlist_add_track(self.podcasts_playlist, track, -1)
        gpod.itdb_playlist_add_track(gpod.itdb_playlist_mpl (self.itdb), track,
-1)

        gpod.itdb_cp_track_to_ipod(track, str(local_filename), None)

-- 
Configure bugmail: https://bugs.gpodder.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
_______________________________________________
gPodder-Bugs mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-bugs

Reply via email to