Anyone used Hollywood to play podcast?
Anyone used Hollywood to play podcast?
I was asked if I could make a podcast playing kind of app, so I started wondering how exactly is that done. I suppose Hollywood can at least download the mp3 file and do it that way, but is it possible to stream podcast in Hollywood?
- airsoftsoftwair
- Posts: 5830
- Joined: Fri Feb 12, 2010 2:33 pm
- Location: Germany
- Contact:
Re: Anyone used Hollywood to play podcast?
Might be possible when combining the HTTP Streamer plugin with the AVcodec plugin but I'm not sure if AVcodec's plugin tries to query the file size or seek to the end in which case it won't work with the HTTP Streamer plugin.
Re: Anyone used Hollywood to play podcast?
Still almost everything is https these days (stupidy extensive use of "s" who cares to. Steal podacast stream
)
So anyway can avcodec combined with hurl ?
So anyway can avcodec combined with hurl ?
Christos
- Juan Carlos
- Posts: 932
- Joined: Mon Sep 06, 2010 1:02 pm
Re: Anyone used Hollywood to play podcast?
No because make a program to listen podcast I think that it is difficult to use several plugins with a same program... the perfect will be one plugin to do this, because in this case you need the plugins hurl, stremer, avcodec and oggvorbis.
Re: Anyone used Hollywood to play podcast?
No, why difficult. If avcodec would be streaming capable that would be no rocket science. The following program works for some seconds, until it hangs...
Code: Select all
@REQUIRE "httpstreamer"
@REQUIRE "avcodec"
stream$="http://stream.live.vc.bbcmedia.co.uk/bbc_world_service"
OpenMusic(1, stream$)
PlayMusic(1)
Wait(120,#SECONDS)
StopMusic(1)
CloseMusic(1)
- airsoftsoftwair
- Posts: 5830
- Joined: Fri Feb 12, 2010 2:33 pm
- Location: Germany
- Contact:
Re: Anyone used Hollywood to play podcast?
I think audio streaming wouldn't be too difficult to add but video streaming is a different thing and probably very difficult to support properly so streaming is rather unlikely to come.
Re: Anyone used Hollywood to play podcast?
By the way, in case anyone comes across this old thread: I have solved the user request for a radio streaming function using the VLC player. You can start it from Hollywood in Telnet mode without opening a window, and the communication is then handled entirely via Telnet. ReceiveData() and SendData() are all you need, and the necessary Telnet negotiation is not too complicated.
This solution runs very reliably on Windows, Linux and Mac.
This solution runs very reliably on Windows, Linux and Mac.
Re: Anyone used Hollywood to play podcast?
I forgot: If someone is interested, I can make an example, but this would need some time to make it standalone, and to translate my German comments.
If you just want to see how it works, you can download Lyrics Jukebox, start it on a machine with VLC player installed, and click on the radio symbol and then the pause button. (Currently, change stations only with PgUp/PgDn or numbers on keyboard or click on the Forward/Backward buttons. And the stations come from the text file LJ RadioURLs.config.)
If you just want to see how it works, you can download Lyrics Jukebox, start it on a machine with VLC player installed, and click on the radio symbol and then the pause button. (Currently, change stations only with PgUp/PgDn or numbers on keyboard or click on the Forward/Backward buttons. And the stations come from the text file LJ RadioURLs.config.)