Hey drop us a line about the show. Feel free to ask questions, provide feedback and criticism, or just ramble on about anything your little heart desires.
Moderators: snarkout, Patrick, dann
-
DaveQB
- Posts: 188
- Joined: Wed Mar 30, 2005 6:50 am
- Location: Sydney
-
Contact:
Post
by DaveQB » Thu Jan 11, 2007 9:20 pm
Hi all.
I have years now just grabbed the episodes of podcasts through a web browser and http. I thought I'd give a pod catcher a try. Went with Kpodder as its KDE and based on BashPodder.
For some reason though, TLLTS podcasts download continusly. Have a look at an example:
Code: Select all
david@jlh ~/Podcasts/TLLTS $ ls
podcast.m3u tllts_174-01-10-07.ogg.10 tllts_174-01-10-07.ogg.17 tllts_174-01-10-07.ogg.5
techshow-slackware1.png tllts_174-01-10-07.ogg.11 tllts_174-01-10-07.ogg.18 tllts_174-01-10-07.ogg.6
tllts_173-01-03-07.log tllts_174-01-10-07.ogg.12 tllts_174-01-10-07.ogg.19 tllts_174-01-10-07.ogg.7
tllts_173-01-03-07.mp3 tllts_174-01-10-07.ogg.13 tllts_174-01-10-07.ogg.2 tllts_174-01-10-07.ogg.8
tllts_173-01-03-07.ogg tllts_174-01-10-07.ogg.14 tllts_174-01-10-07.ogg.20 tllts_174-01-10-07.ogg.9
tllts_174-01-10-07.ogg tllts_174-01-10-07.ogg.15 tllts_174-01-10-07.ogg.3
tllts_174-01-10-07.ogg.1 tllts_174-01-10-07.ogg.16 tllts_174-01-10-07.ogg.4
A slight pain. Most other podcasts are fine. Any idea's guys ?
Linux david 2.6.29.3-desktop-1mnb #1 SMP Thu May 14 15:19:40 EDT 2009 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 6000+
Distro: Mandriva 2009.1
-
hellonorman
- Posts: 267
- Joined: Wed Dec 28, 2005 11:08 pm
Post
by hellonorman » Fri Jan 12, 2007 2:35 pm
Does that log file in the directory you showed have anything interesting to say?
My guess is that it's not handling the redirect that tllts uses correctly. Where the file name is the same but the rest of the url is different so it thinks its a new cast.
"It's not a lie, if you really believe it"
--George Costanza
-
Ryochan7
- Posts: 99
- Joined: Wed Dec 15, 2004 10:18 pm
- Location: Peoria, IL
-
Contact:
Post
by Ryochan7 » Fri Jan 12, 2007 8:30 pm
The script that Kpodder uses is based on older versions of BashPodder so it uses the old sed method to parse rss feeds. This has caused many problems with FeedBurner feeds in that FeedBurner has multiple tags that use the url variable that point to the same url. The Kpodder script doesn't isolate urls in enclosure tags so the same files get downloaded multiple times. Tllts now uses FeedBurner for its feeds now so that is part of the reason why Kpodder is having problems with the tllts feeds.
I don't know why Kpodder downloaded the episodes so many times. I haven't used Kpodder in a long time but I built the Arch package for it and tried it with the tllts ogg feed. Each episode downloaded twice and it downloaded the iTunes image as well. Also, Kpodder downloaded the episodes that I checked as logged for some reason.
I use a modified version of BashPodder on my server for a podcatcher. It works out really well for me.
-
DaveQB
- Posts: 188
- Joined: Wed Mar 30, 2005 6:50 am
- Location: Sydney
-
Contact:
Post
by DaveQB » Fri Jan 12, 2007 9:06 pm
Thanks alot for the informative responses. There is no log file in the dir listed besides one that's generated from my own app thats splits a podcast up and puts it in its own sub-dir.
I might try bashpodder then. Put it on my server like Ryochan7 has, as the server is always on; my Desktop is on most of the time too but ...
I might try and email the author of Kpodder. Or even try and look at the source myself and see if I can alter it to use new baskpodder

Linux david 2.6.29.3-desktop-1mnb #1 SMP Thu May 14 15:19:40 EDT 2009 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 6000+
Distro: Mandriva 2009.1
-
Jza
- Posts: 466
- Joined: Sun Oct 30, 2005 7:01 pm
- Location: Mexico
-
Contact:
Post
by Jza » Mon Jan 15, 2007 12:07 am
It kinda looks like Gpodder. I dont really care since I get my podcast out of RSS catchers.
Alexandro COLORADO
-
DaveQB
- Posts: 188
- Joined: Wed Mar 30, 2005 6:50 am
- Location: Sydney
-
Contact:
Post
by DaveQB » Wed Jan 17, 2007 6:49 am
So here is something bizarre.
I have found downloading through kpodder resulted in my files, after running through my script to chop them into 2min tracks, playbac on my Nokia 6280 out of sequence, random almost. The same podcast, downloaded manually and then run through the script plays back in order of the track name, like one would expect. This is werd.
My script is such:
Code: Select all
#!/bin/bash
file="$1"
dir=${file%.*}
nice -n 15 ogg2mp3 "${file}"
file="${file%.*}".mp3
mkdir "$dir"
#cd "$dir"
mp3splt -f -t 2.00 -d "$dir" "$file" &> $dir.log
Where ogg2mp3 is another script I wrote that pipes oggdec to lame to convert from ogg to mp3. [My nokia only plays mp3

]
Must be the way the packets are downloaded through RSS.
Linux david 2.6.29.3-desktop-1mnb #1 SMP Thu May 14 15:19:40 EDT 2009 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 6000+
Distro: Mandriva 2009.1