Which mime type should I use for mp3

前端 未结 5 2205
滥情空心
滥情空心 2020-11-29 02:45

I\'m trying to decide which mime type to choose for returning mp3 data (served up by php)

according to this listing of mime types: http://www.webmaster-toolkit.com/m

5条回答
  •  一生所求
    2020-11-29 03:10

    The standard way is to use audio/mpeg which is something like this in your PHP header function ...

    header('Content-Type: audio/mpeg');

提交回复
热议问题