Find URL of Flash radio stream

334

I encourage you to use their website, as you probably get the service for free thanks to their adverts.

However, for educational purposes, you can use the browser's built-in network analyzer (I use Google Chrome) or wireshark to get the URL:

http://8303.live.streamtheworld.com/WKXWFMAAC

A full list of URL's can be found in the xml file:

http://playerservices.streamtheworld.com/api/livestream?version=1.5&mount=WKXWFMAAC&lang=EN&transports=http&nobuf=1355525218692

Anyhow, my VLC doesn't seem to connect whilst Totem works perfectly fine, and I can download the stream as well.

For a more detailed answer, see: https://stackoverflow.com/questions/6814493/audio-streaming-protocol-for-streamtheworld-net

Share:
334

Related videos on Youtube

Anders Bootsmann Larsen
Author by

Anders Bootsmann Larsen

Updated on September 18, 2022

Comments

  • Anders Bootsmann Larsen
    Anders Bootsmann Larsen over 1 year

    Hello i have a question about vue routing and how the tree works. I have my parrent router where i have my router-view and my header on same level.

    i have some functions i want to trigger from my header to a route called dashboard within my router-view

    e.g: header.vue

    <a href="#" @click.prevent="update()"> click me to update dashboard </a>
    

    dashboard.vue

    <p> {{datafrom filldata}} </p>
    
      methods: { 
       fillDataToP() {
        function to fill data
       }
      }
    

    is this possible in vue?

    • John
      John over 11 years
      I installed "Adblock Plus" to eliminate a lot of the ads so it would be easier to go through. Then, in Firebug, I looked under the "Net" section and then under "Flash", but none of those seem to be it.
    • Emile Bergeron
      Emile Bergeron over 5 years
    • Emile Bergeron
      Emile Bergeron over 5 years
      Frank's answer is one of the ways already listed in the duplicate candidate, there are other ways, and in this case, the data should be in a Vuex state and the update button should trigger an action which would update the state, then triggering a rerender of the dashboard accordingly.
  • jmort253
    jmort253 over 11 years
    Welcome to Super User. Great first post! :)
  • Anders Bootsmann Larsen
    Anders Bootsmann Larsen over 5 years
    When i create this it says that this.$bus.on is not an function
  • frank Walleway
    frank Walleway over 5 years
    Sorry, forgot to add the $ before on: this.$bus.$on() should work. Same goes for the emit: this.$bus.$emit() :)
  • Anders Bootsmann Larsen
    Anders Bootsmann Larsen over 5 years
    hehe i figured that out, but now im trying to call a function from my methods on dashboard, but it says that the this.filldata() is not a function :)
  • Anders Bootsmann Larsen
    Anders Bootsmann Larsen over 5 years
    i can console log things but not use a method from dashboard
  • frank Walleway
    frank Walleway over 5 years
    The this, when calling this.filldata(), refers to the eventbus. What you could do is: declare a variable called self and assign this to it (before you call the this.$bus). e.g var self = this; Then in the .$on() you can use the method by calling it from the self: self.functionToCallFromDashboard()