Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个需要播放 mp3 文件的应用程序。我正在寻找的是 libsox(或任何其他音频库)的某种包装函数。我一直在网上寻找,但没有找到任何可以快速实施的选项。我正在寻找类似的东西;
bla=open_file("/mnt/music/my_music.mp3")
play_thefile(bla)
stop_thefile(bla)
close_thefile(bla)
这次我只想简单一点,不要疯狂的混合或过滤。有人知道有什么帮助吗?
我最终将 sugin libmpd0 与 MPD 结合使用,这非常有效,并且 libmpd 非常易于使用。