1

このラジオストリームを受信できるアプリケーションを作成する必要があります。http://mp32.bbc.streamuk.com :80/ 些細なことのように聞こえるかもしれませんが、どのストリーミング形式を使用しているかわかりません。どのように私は見つけることができますか?

4

3 に答える 3

1

It looks like the stream is presented in the MIME-type audio\mpeg, so it's probably an MP3 stream--that's relatively standard for SHOUTcast streams, of which your URL is one.

I'm not sure what you mean by "Receive" the radio stream. If you're looking to make a player/radio utility, I'd check out something like tRio, which is open source, and could serve as a jumping-off point for you rolling your own player. With regards to rolling your own, I've done something similar with MP3 streams (in Python), but not for SHOUTcast. The SO questions here and here were helpful in my efforts.

If by "Receive" you mean "capture to a file" (i.e. rip), you might consider writing a wrapper around a commandline program like flcy.

于 2012-05-30T21:29:10.350 に答える
0

問題は、ストリームを盗むべきではないということです。BBC Worldservice にうまく依頼すれば、彼らの使命はストリームを広く利用できるようにすることなので、対応できると確信しています。

mp3 ストリームと思われる場合に備えて。ワールド サービスのサイトにアクセスすると、聞き方を説明したページがあります。私はVLCを好む...

その 32 kbps の mp3 シャウトキャスト ストリームです。

于 2012-06-04T18:42:30.540 に答える
0

BBCなので、お住まいの地域によっては配信が受けられない可能性が高いです。英国にいる限り、かなり多くのストリーム (オーディオ、ビデオ) を提供していますが、国外では、それらのほとんどにアクセスできません。

私は(オランダから)それを少しいじっただけで、これが私が得たものです:

E:\tmp>wget.exe http://mp32.bbc.streamuk.com/listen.pls
--00:56:25--  http://mp32.bbc.streamuk.com/listen.pls
           => `listen.pls'
Resolving mp32.bbc.streamuk.com... 194.50.90.138
Connecting to mp32.bbc.streamuk.com|194.50.90.138|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [audio/x-scpls]

    [ <=>                                              ] 70            --.--K/s

00:56:30 (2.89 MB/s) - `listen.pls' saved [70]


E:\tmp>type listen.pls
[playlist]
NumberOfEntries=1
File1=http://mp32.bbc.streamuk.com:8020/


E:\tmp>c:wget.exe http://mp32.bbc.streamuk.com:8020/
--00:57:04--  http://mp32.bbc.streamuk.com:8020/
           => `index.html'
Resolving mp32.bbc.streamuk.com... 194.50.90.138
Connecting to mp32.bbc.streamuk.com|194.50.90.138|:8020... failed: Connection refused.

connection refusedボリュームを話します。http://mp32.bbc.streamuk.com/のステータス ページは、接続の最大数にまだ達していないことを示しているため、おそらくデジタル エクスポートの制限に関係しています。

于 2012-05-30T23:04:43.530 に答える