我想流式播放 M4A 音频文件,但出于某种原因,播放器只有在下载完整个文件后才开始播放该歌曲。
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="https://php-test-easybreazy.c9users.io/music/1021785690_1171244514_239291028.m4a" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
在我的 Ubuntu 服务器中,我使用 FFMPEG 对我的音频文件进行编码。
我唯一能想到的是元数据/编码问题。
为什么播放器只在下载完整个文件音频后才开始播放?
答案 0 :(得分:4)
在编码为MP4 / M4V / M4A时添加-movflags +faststart
,或使用此选项重新复用:
ffmpeg -i input.m4a -c copy -movflags +faststart output.m4a