美文网首页
2021-08-17 用node调用本地播放器播放音乐

2021-08-17 用node调用本地播放器播放音乐

作者: 罗不错 | 来源:发表于2021-08-17 11:22 被阅读0次

    const path = require('path')
    const child_process = require('child_process');
    let pathStr = path.join("C:/Program Files (x86)/Tencent/QQMusic/QQMusic.exe")
    var p = path.join(__dirname, 'foo.mp3')
    console.log(p)
    var sound = child_process.spawn(pathStr, ["--play-and-exit", p]);
    sound.on('exit', function () {
    console.log('played');
    });

    相关文章

      网友评论

          本文标题:2021-08-17 用node调用本地播放器播放音乐

          本文链接:https://www.haomeiwen.com/subject/dhgbbltx.html