Skip to content

Commit e547a8e

Browse files
authored
Add HLS (.m3u8) audio-only streaming file (#252)
Add an audio-only HTTP Live Streaming (HLS) .m3u8 file to test in the video_player_avfoundation plugin flutter/packages#7890 Created from the existing bee.mp4 video: ``` ffmpeg -i bee.mp4 -vn -c:a aac -b:a 128k audio_only.aac ffmpeg -i audio_only.aac -c:a aac -b:a 128k -ar 44100 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls bee_audio_only.m3u8 ``` Related issues: [flutter/flutter#156589](flutter/flutter#156589)
1 parent 08fed06 commit e547a8e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

assets/videos/hls/bee_audio_only.m3u8

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#EXTM3U
2+
#EXT-X-VERSION:3
3+
#EXT-X-TARGETDURATION:4
4+
#EXT-X-MEDIA-SEQUENCE:0
5+
#EXTINF:4.076956,
6+
bee_audio_only0.ts
7+
#EXT-X-ENDLIST

assets/videos/hls/bee_audio_only0.ts

68.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)