Page 1 of 1

Anyone used Hollywood to play podcast?

Posted: Sun Apr 30, 2023 9:32 am
by Bugala
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?

Re: Anyone used Hollywood to play podcast?

Posted: Sun Apr 30, 2023 6:26 pm
by airsoftsoftwair
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?

Posted: Sun Apr 30, 2023 6:56 pm
by plouf
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 ?

Re: Anyone used Hollywood to play podcast?

Posted: Tue May 02, 2023 2:25 pm
by Juan Carlos
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?

Posted: Wed May 03, 2023 2:23 pm
by Flinx
Juan Carlos wrote: Tue May 02, 2023 2:25 pm difficult to use several plugins with a same program
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)

Re: Anyone used Hollywood to play podcast?

Posted: Sun May 07, 2023 11:37 am
by airsoftsoftwair
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?

Posted: Sun May 11, 2025 3:09 pm
by Flinx
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.

Re: Anyone used Hollywood to play podcast?

Posted: Mon May 12, 2025 10:57 am
by Flinx
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.)