はじめに
●youtube音楽をWEBで操作し、PCスピーカで再生できるようにする。
(Googlehomeで声で操作するのWeb操作版です)
【操作例】WEBから「クリスマスイブ」と入力する
環境
●Windows10 HOMEのPCにWSLのubuntuをインストールする。
●ubuntuでapache2,npm,node.js,youtube-dl,mplayer,mpvをインストールする
●WSLのubuntuでpulseaudioでPCのスピーカを使うようにする
●Windows側でpulseaudioサーバのインストールが必要です
https://www.cendio.com/thinlinc/downloadの 「Client Bundle」のリンクからダウンロードできます
●radikoを再生するには、その環境構築(radiko.sh)が必要です。
youtube音楽を再生するプログラム(ytplay.js)
●単体で起動する方法
$node ytplay.js 検索キー(例 クリスマスイブ)
●youtubeのKeyは自分のKeyに置き換えてください
const exec = require('child_process').exec;
const Youtube = require('youtube-node');
const youtube = new Youtube();
var limit = 1;
var items;
var item;
var title;
var id;
// 取得したAPIキーを入力する。
youtube.setKey('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
youtube.addParam('order', 'viewCount');
youtube.addParam('type', 'video');
youtube.addParam('regionCode', 'JP');
//youtube検索文字取得
const value = process.argv[2];
if (!value) return
console.log(value)
// キーワードから検索し、動画IDやタイトルを取得する。
play_youtube(value);
// 音楽ファイルのURLを取得し、再生する。
function play_youtube(keyword) {
youtube.search(keyword, 1, {'type':'video','videoCategoryId':10} , function(error, result) {
if (error) {
console.log(error);
return ;
}
for (const item of result.items) {
if (item.id.videoId) {
var exec = require('child_process').exec;
command = "youtube-dl 'https://www.youtube.com/watch?v="+item.id.videoId+"' -o - | mplayer - -novideo"
console.log(command);
exec(command, {maxBuffer: 40000*1024},function(error, stdout, stderr) {
if (error !== null) {
console.log('exec error: '+error);
}
});
}
}
});
}
index.php
<?php
if(isset($_GET['comment'])){
$comment = $_GET['comment'];
exec("killall mplayer");
exec("killall mpv");
exec("node /home/ユーザ名/ytplay.js " .$comment);
}
if(isset($_GET['id'])){
$id = $_GET['id'];
if($id=="stop"){
exec("killall mplayer");
exec("killall mpv");
}elseif($id=="TBS"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="QRR"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="LFR"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="INT"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="FMT"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="FMJ"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="JORF"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="BAYFM78"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="RN1"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="RN2"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="HOUSOU-DAIGAKU"){
exec("killall mplayer");
exec("killall mpv");
exec("/home/ユーザ名/radiko.sh -p " .$id. " > /dev/null &");
}elseif($id=="https://nhkradioakr1-i.akamaihd.net/hls/live/511633/1-r1/1-r1-01.m3u8"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv " .$id. " > /dev/null &");
}elseif($id=="https://nhkradioakr2-i.akamaihd.net/hls/live/511929/1-r2/1-r2-01.m3u8"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv " .$id. " > /dev/null &");
}elseif($id=="https://nhkradioakfm-i.akamaihd.net/hls/live/512290/1-fm/1-fm-01.m3u8"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv " .$id. " > /dev/null &");
}elseif($id=="https://stream.backstagecafe.jp/live/_definst_/rVFqYTFQ053A/chunklist.m3u8"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv -vo null " .$id. " > /dev/null &");
}elseif($id=="http://sky1.torontocast.com:9041/stream"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv -vo null " .$id. " > /dev/null &");
}elseif($id=="https://ottava-live.webcdn.stream.ne.jp/hls-live/mvqj18ky8u87ske8/playlist.m3u8"){
exec("killall mplayer");
exec("killall mpv");
exec("mpv -vo null " .$id. " > /dev/null &");
}else{
exec("killall mplayer");
exec("killall mpv");
exec("mplayer -playlist " .$id. " > /dev/null &");
}
}
?>
<html>
<head>
<meta name="viewport" content="width=device-width">
</head>
<body>
<p><a href="index.php?id=stop">stop</a></p>
<form action="index.php" method="get">
<input type="text" name=comment>
<input type="submit" value="youtube">
</form>
<ul>
<li><a href="index.php?id=TBS">TBSラジオ</a></li>
<li><a href="index.php?id=QRR">文化放送</a></li>
<li><a href="index.php?id=LFR">ニッポン放送</a></li>
<li><a href="index.php?id=INT">InterFM897</a></li>
<li><a href="index.php?id=FMT">TOKYO FM</a></li>
<li><a href="index.php?id=FMJ">J-WAVE</a></li>
<li><a href="index.php?id=JORF">ラジオ日本</a></li>
<li><a href="index.php?id=BAYFM78">bayfm78</a></li>
<li><a href="index.php?id=RN1">ラジオNIKKEI第1</a></li>
<li><a href="index.php?id=RN2">ラジオNIKKEI第2</a></li>
<li><a href="index.php?id=HOUSOU-DAIGAKU">放送大学</a></li>
<li><a href="index.php?id=https://nhkradioakr1-i.akamaihd.net/hls/live/511633/1-r1/1-r1-01.m3u8">NHK 第一</a></li>
<li><a href="index.php?id=https://nhkradioakr2-i.akamaihd.net/hls/live/511929/1-r2/1-r2-01.m3u8">NHK 第二</a></li>
<li><a href="index.php?id=https://nhkradioakfm-i.akamaihd.net/hls/live/512290/1-fm/1-fm-01.m3u8">NHK FM</a></li>
<li><a href="index.php?id=https://stream.backstagecafe.jp/live/_definst_/rVFqYTFQ053A/chunklist.m3u8">Backstage Cafe</a></li>
<li><a href="index.php?id=http://sky1.torontocast.com:9041/stream">J1 Radio(J-POP聴き放題チャンネル)</a></li>
<li><a href="index.php?id=https://ottava-live.webcdn.stream.ne.jp/hls-live/mvqj18ky8u87ske8/playlist.m3u8">OTTAVA(クラ シック)</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30044/livestream/playlist.m3u8">FM WING</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30060/livestream/playlist.m3u8">ラジオニセコ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30005/livestream/playlist.m3u8">三角山放送局</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30016/livestream/playlist.m3u8">FM JAGA</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30047/livestream/playlist.m3u8">FMいるか</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30074/livestream/playlist.m3u8">FMりべーる</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30079/livestream/playlist.m3u8">Be FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30050/livestream/playlist.m3u8">カシオペアFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30097/livestream/playlist.m3u8">みやこハーバーラジオ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30007/livestream/playlist.m3u8">RADIO3</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30037/livestream/playlist.m3u8">ラジオ気仙沼</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30018/livestream/playlist.m3u8">FMいずみ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30092/livestream/playlist.m3u8">なとらじ801</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30030/livestream/playlist.m3u8">FMゆーとぴあ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30076/livestream/playlist.m3u8">横手かまくらFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30089/livestream/playlist.m3u8">鹿角きりたんぽFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30014/livestream/playlist.m3u8">エフエム椿台</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30019/livestream/playlist.m3u8">FM-MOTCom</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30020/livestream/playlist.m3u8">KOCOラジ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30092/livestream/playlist.m3u8">南相馬ひばりFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30023/livestream/playlist.m3u8">FMひたち</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30043/livestream/playlist.m3u8">まえばしCITYエフエム</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30026/livestream/playlist.m3u8">すまいるエフエム</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30002/livestream/playlist.m3u8">フラワーラジオ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30035/livestream/playlist.m3u8">FM Kawaguchi</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30096/livestream/playlist.m3u8">ハローハッピー・こしがやエフエム</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30008/livestream/playlist.m3u8">REDS WAVE</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30081/livestream/playlist.m3u8">八王子FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30036/livestream/playlist.m3u8">レインボータウンFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30063/livestream/playlist.m3u8">レディオ湘南</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30080/livestream/playlist.m3u8">FMHOT893</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30057/livestream/playlist.m3u8">FMカオン</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30006/livestream/playlist.m3u8">ラジオ・ミュー</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30001/livestream/playlist.m3u8">FM N1</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30012/livestream/playlist.m3u8">敦賀FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30086/livestream/playlist.m3u8">あづみ野エフエム放送</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30032/livestream/playlist.m3u8">FM軽井沢</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30062/livestream/playlist.m3u8">Clao!</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30004/livestream/playlist.m3u8">MD-FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30040/livestream/playlist.m3u8">FMおかざき</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30065/livestream/playlist.m3u8">Pitch FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30049/livestream/playlist.m3u8">エフエムひらかた</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30013/livestream/playlist.m3u8">FMジャングル</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30067/livestream/playlist.m3u8">FM aiai</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30084/livestream/playlist.m3u8">ビーチステーション</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30051/livestream/playlist.m3u8">FM TANABE</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30053/livestream/playlist.m3u8">DARAZ FM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30010/livestream/playlist.m3u8">エフエムびざん</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30070/livestream/playlist.m3u8">FM SUN</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30024/livestream/playlist.m3u8">FM815</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30054/livestream/playlist.m3u8">あまみエフエム</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30069/livestream/playlist.m3u8">FMいしがきサンサンラジオ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30055/livestream/playlist.m3u8">FMなんじょう</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30003/livestream/playlist.m3u8">FMニライ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30093/livestream/playlist.m3u8">FMぎのわん</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30098/livestream/playlist.m3u8">ぎのわんシティFM</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30083/livestream/playlist.m3u8">FMとよみ</a></li>
<li><a href="index.php?id=http://mtist.as.smartstream.ne.jp/30011/livestream/playlist.m3u8">FMうるま</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/kawasaki.asx">かわさきFM</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fmpalulun.asx">FMぱるるん</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/banban.asx">BAN-BANラジオ 加古川市</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fm-tachikawa.asx">エフエムたちかわ</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/totsuka.asx">FM戸塚</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/chofu_fm.asx">調布FM</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fm-iwaki.asx">FMいわき</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/FmYutopia.asx">FMゆーとぴあ</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fmmoov.asx">FM MOOV KOBE</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/lequio.asx">FMレキオ</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/yes-fm.asx">YES-fm 大阪府</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/radiocafe.asx">京都三条ラジオカフェ</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/tsukuba.asx">ラヂオつくば</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fmapple.asx">FMアップル</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/fmIzumi.asx">fmいずみ 仙台</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/FmKushiro.asx">FMくしろ</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/takahagi.asx">たかはぎFM</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/chuo_fm.asx">中央エフエム</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/kawaguchi.asx">FM Kawaguchi 川口市</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/mid-fm761.asx">MID-FM 名古屋市中区</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/radiomyu.asx">ラジオ・ミュー 黒部市</a></li>
<li><a href="index.php?id=http://www.simulradio.info/asx/jungle.asx">FMジャングル 豊岡市</a></li>
<li><a href="index.php?id=http://csra.fm/asx/taihaku.asx">FMたいはく 仙台</a></li>
<li><a href="index.php?id=http://csra.fm/asx/katsushika.asx">かつしかFM</a></li>
<li><a href="index.php?id=http://csra.fm/asx/fmuu.asx">FM-UU 牛久市</a></li>
<li><a href="index.php?id=http://csra.fm/asx/toyota.asx">RADIO LOVEAT 豊田市</a></li>
<li><a href="index.php?id=http://csra.fm/asx/suzuka.asx">Suzuka Voice FM 鈴鹿市</a></li>
<li><a href="index.php?id=http://www.darazfm.com/streaming.asx">DARAZ FM 米子市</a></li>
<li><a href="index.php?id=http://www.npo-d.org/simul/AmamiFM.asx">あまみFM 奄美市</a></li>
<li><a href="index.php?id=https://musicbird-hls.leanstream.co/musicbird/JCB075.stream/playlist.m3u8?args=web_03">BananaFM 和歌山県</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1864012">Jazz Sakura</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1586446">J-Pop Sakura 17</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1656313">J-Pop - PowerPlay</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1659345">Asia DREAM Radio - Japan Hits</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1634740">.113FM Korean Pop</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1738454">Radio 2.0 - Valli di Bergamo</a></li>
<li><a href="index.php?id=http://yp.shoutcast.com/sbin/tunein-station.m3u?id=1749428">RADIO CLASIC MOZART</a></li>
</ul>
</body>
</html>
まとめ
●お気に入りのPCスピーカでyoutubue音楽が流せます
●プログラムはラズパイでも同様に動作しますが、youtube-dlの動作が遅く、再生開始に少々時間がかかります。