Latest Episode
 

Go Back   Keith and The Girl Forums Keith and The Girl Forums Talk Shite

Talk Shite General discussion

Reply
 
Thread Tools Display Modes
Old 05-15-2009, 02:24 PM   #331 (permalink)
Senior Member
 
Willeth's Avatar
 
Join Date: Aug 2007
Location: England
Posts: 139
How in-depth is the Twitter support? TwitterFon just got updated with some of those obnoxious ads, and I don't want to go ahead and buy a Twitter client if I can donate to this app instead. Does it only display tweets from KATG folks or will it display them from all the people I'm following?
(Offline)   Reply With Quote
Old 05-15-2009, 02:37 PM   #332 (permalink)
Administrator
 
hayroob's Avatar
 
Join Date: Mar 2008
Location: Detroitish
Posts: 1,654
Quote:
Originally Posted by Willeth View Post
How in-depth is the Twitter support? TwitterFon just got updated with some of those obnoxious ads, and I don't want to go ahead and buy a Twitter client if I can donate to this app instead. Does it only display tweets from KATG folks or will it display them from all the people I'm following?
Just KATG. Just throw down the 4 bucks for twitterific. It's excellent and the pay version is add free.
(Offline)   Reply With Quote
Old 05-16-2009, 01:20 AM   #333 (permalink)
Administrator
 
hayroob's Avatar
 
Join Date: Mar 2008
Location: Detroitish
Posts: 1,654
OK so I am waffling between using audiostreamer and mpmovieplayer for past shows.

AudioStreamer:
Pros: Plays in background so you can use the rest of the app

Cons: Scrubbing around in show is not available (or at least a pain to code)
Pause is unavailable.
Unable to function without a current internet connection
Poor error handling (I'll fix this eventually, but not soon)
Only good for audio, would use MPMoviePlayer for KATGTV eps

MPMoviePlayer:
Pros: Very easy to code/maintain
Once file is done downloading, internet can be disconnected
Scrubbing around episode is easy
Responds to ipod controls (home screen, earbud buttons, etc)

Cons: Plays mp3s full screen so rest of app is unavailable




A separate problem I need to solve:
When I use audiostreamer on mp3s from the show it takes a fat shit.
If I take one of the files and reencode it at the same settings its currently at, with LAME, which I think is what they use, it streams like a champ.
I'm stumped.

MPMoviePlayer will play either with no hiccups.

Example:
Fails Miserably
http://media.libsyn.com/media/shitec...2009-05-14.mp3
Streams no problem:
http://whywontyoudie.com/959Test.mp3
__________________
If you like the KATG app feel free to kick in some bucks (or don't)
KATGIPHONE Donation

Last edited by hayroob; 05-16-2009 at 01:22 AM.
(Offline)   Reply With Quote
Old 05-16-2009, 01:25 AM   #334 (permalink)
Senior Member
 
hypercrypt's Avatar
 
Join Date: Nov 2006
Location: My Place: Liverpool. Born and raised in Berlin.
Posts: 771
Haven't tested it yet, will do in a second, but could it be die to the redirects of the first one?

Code:
$ curl -IL "http://media.libsyn.com/media/shitecom/KATG-2009-05-14.mp3"
HTTP/1.1 302 Found
X-Powered-By: PHP/5.1.4
Location: http://traffic.libsyn.com/wa1shitecom/KATG-2009-05-14.mp3
Content-type: text/html
Date: Sat, 16 May 2009 05:24:57 GMT
Server: lighttpd/1.4.15

HTTP/1.1 302 Found
Date: Sat, 16 May 2009 05:24:57 GMT
Server: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.5 with Suhosin-Patch
X-Powered-By: PHP/5.2.4-2ubuntu5.5
location: http://cdn1.libsyn.com/shitecom/KATG-2009-05-14.mp3?nvb=20090516052457&nva=20090517052457&t=092ee74e9c4a273401d03
Content-Type: text/html

HTTP/1.1 200 OK
Cache-Control: max-age=3600
Content-Length: 186552863
Content-Type: audio/mpeg
ETag: "9d62c84-b1e921f-469eb0a9af0c0"
Expires: Sat, 16 May 2009 06:03:33 GMT
Last-Modified: Fri, 15 May 2009 03:28:43 GMT
Accept-Ranges: bytes
Server: Footprint Distributor V4.4
Date: Sat, 16 May 2009 05:24:57 GMT
Connection: keep-alive
(Offline)   Reply With Quote
Old 05-16-2009, 01:28 AM   #335 (permalink)
Administrator
 
hayroob's Avatar
 
Join Date: Mar 2008
Location: Detroitish
Posts: 1,654
Quote:
Originally Posted by hypercrypt View Post
Haven't tested it yet, will do in a second, but could it be die to the redirects of the first one?

Code:
$ curl -IL "http://media.libsyn.com/media/shitecom/KATG-2009-05-14.mp3"
HTTP/1.1 302 Found
X-Powered-By: PHP/5.1.4
Location: http://traffic.libsyn.com/wa1shitecom/KATG-2009-05-14.mp3
Content-type: text/html
Date: Sat, 16 May 2009 05:24:57 GMT
Server: lighttpd/1.4.15

HTTP/1.1 302 Found
Date: Sat, 16 May 2009 05:24:57 GMT
Server: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.5 with Suhosin-Patch
X-Powered-By: PHP/5.2.4-2ubuntu5.5
location: http://cdn1.libsyn.com/shitecom/KATG-2009-05-14.mp3?nvb=20090516052457&nva=20090517052457&t=092ee74e9c4a273401d03
Content-Type: text/html

HTTP/1.1 200 OK
Cache-Control: max-age=3600
Content-Length: 186552863
Content-Type: audio/mpeg
ETag: "9d62c84-b1e921f-469eb0a9af0c0"
Expires: Sat, 16 May 2009 06:03:33 GMT
Last-Modified: Fri, 15 May 2009 03:28:43 GMT
Accept-Ranges: bytes
Server: Footprint Distributor V4.4
Date: Sat, 16 May 2009 05:24:57 GMT
Connection: keep-alive
I saved a local copy to my webserver and it behaves the same.

Just as a side note
The encoding is done with
mp3
mono
128kbps
44.1k
lame 3.97 in quicktime

I match the settings of the original exactly.
(Offline)   Reply With Quote
Old 05-16-2009, 01:31 AM   #336 (permalink)
Senior Member
 
hypercrypt's Avatar
 
Join Date: Nov 2006
Location: My Place: Liverpool. Born and raised in Berlin.
Posts: 771
http://cdn1.libsyn.com/shitecom/KATG...e9c4a273401d03 works fine for me using a (very slightly) modified version of AudioStreamer. Do you have a link to the file on your server?
(Offline)   Reply With Quote
Old 05-16-2009, 01:32 AM   #337 (permalink)
Administrator
 
hayroob's Avatar
 
Join Date: Mar 2008
Location: Detroitish
Posts: 1,654
Quote:
Originally Posted by hypercrypt View Post
http://cdn1.libsyn.com/shitecom/KATG...e9c4a273401d03 works fine for me using a (very slightly) modified version of AudioStreamer. Do you have a link to the file on your server?
http://whywontyoudie.com/959_Lolz.mp3

It is the redirect, there was a space in the filename on the local copy and it was making apache barf.

Gotta fiddle with how to solve the redirect business.

Last edited by hayroob; 05-16-2009 at 01:35 AM.
(Offline)   Reply With Quote
Old 05-16-2009, 01:36 AM   #338 (permalink)
Senior Member
 
hypercrypt's Avatar
 
Join Date: Nov 2006
Location: My Place: Liverpool. Born and raised in Berlin.
Posts: 771
So http://whywontyoudie.com/959_Lolz.mp3 works fine for you?

If so, the problem is should be, indirectly, due to the redirect. The final URL does not end in a file extension, so the code does not know the format. You'll need to tell AudioStreamer that it is an MP3 file.
(Offline)   Reply With Quote
Old 05-16-2009, 01:39 AM   #339 (permalink)
Administrator
 
hayroob's Avatar
 
Join Date: Mar 2008
Location: Detroitish
Posts: 1,654
Quote:
Originally Posted by hypercrypt View Post
So http://whywontyoudie.com/959_Lolz.mp3 works fine for you?

If so, the problem is should be, indirectly, due to the redirect. The final URL does not end in a file extension, so the code does not know the format. You'll need to tell AudioStreamer that it is an MP3 file.
The file extension isn't a problem. The url after the redirect works fine. I just have to follow the redirect. Thanks, solved that one double quick. Duped by a redirect and a space in a file name. Today I am double dumb.
(Offline)   Reply With Quote
Old 05-16-2009, 01:39 AM   #340 (permalink)
Senior Member
 
yoav's Avatar
 
Join Date: Apr 2006
Posts: 1,050
Quote:
Originally Posted by hayroob View Post
OK so I am waffling between using audiostreamer and mpmovieplayer for past shows.

AudioStreamer:
Pros: Plays in background so you can use the rest of the app

Cons: Scrubbing around in show is not available (or at least a pain to code)
Pause is unavailable.
Unable to function without a current internet connection
Poor error handling (I'll fix this eventually, but not soon)
Only good for audio, would use MPMoviePlayer for KATGTV eps

MPMoviePlayer:
Pros: Very easy to code/maintain
Once file is done downloading, internet can be disconnected
Scrubbing around episode is easy
Responds to ipod controls (home screen, earbud buttons, etc)

Cons: Plays mp3s full screen so rest of app is unavailable




A separate problem I need to solve:
When I use audiostreamer on mp3s from the show it takes a fat shit.
If I take one of the files and reencode it at the same settings its currently at, with LAME, which I think is what they use, it streams like a champ.
I'm stumped.

MPMoviePlayer will play either with no hiccups.

Example:
Fails Miserably
http://media.libsyn.com/media/shitec...2009-05-14.mp3
Streams no problem:
http://whywontyoudie.com/959Test.mp3

from a user perspective i'd be happy to have episodes play full screen, if i'm listening on my iphone i'm probably on the go somewhere and can't listen and browse and do whatever else at the same time. plus i love pausing/resuming with the headphone mic click.

from a developer perspective if you're already using mpmovie player for video i'd just use it all round. the fewer things to maintain the better.
(Offline)   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


All times are GMT -5. The time now is 08:53 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Keith and The Girl