| 32 | * [https://gist.github.com/1185755 らじるらじるをrtmpdumpで録音する — Gist] |
| 33 | > {{{#!sh |
| 34 | > # RTMPEのtype9 handshakeに対応している必要があるのでRTMPDump v2.4必須 |
| 35 | > # CentOS5 32bitのさくらVPS、OSX Lionで動作確認。(OSX LionではRTMPDumpを32bitでビルド) |
| 36 | > |
| 37 | > # ラジオ第1 |
| 38 | > rtmpdump --rtmp "rtmpe://netradio-r1-flash.nhk.jp" \ |
| 39 | > --playpath 'NetRadio_R1_flash@63346' \ |
| 40 | > --app "live" \ |
| 41 | > -W http://www3.nhk.or.jp/netradio/files/swf/rtmpe.swf \ |
| 42 | > --live \ |
| 43 | > -o r1.m4a |
| 44 | > |
| 45 | > #ラジオ第2 |
| 46 | > rtmpdump --rtmp "rtmpe://netradio-r2-flash.nhk.jp" \ |
| 47 | > --playpath 'NetRadio_R2_flash@63342' \ |
| 48 | > --app "live" \ |
| 49 | > -W http://www3.nhk.or.jp/netradio/files/swf/rtmpe.swf \ |
| 50 | > --live \ |
| 51 | > -o r2.m4a |
| 52 | > |
| 53 | > #NHK-FM |
| 54 | > rtmpdump --rtmp "rtmpe://netradio-fm-flash.nhk.jp" \ |
| 55 | > --playpath 'NetRadio_FM_flash@63343' \ |
| 56 | > --app "live" \ |
| 57 | > -W http://www3.nhk.or.jp/netradio/files/swf/rtmpe.swf \ |
| 58 | > --live \ |
| 59 | > -o fm.m4a |
| 60 | > }}} |