Skip to content

Commit

Permalink
Add HLS (.m3u8) audio-only streaming file (#252)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
napoleon-na authored Dec 9, 2024
1 parent 08fed06 commit e547a8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions assets/videos/hls/bee_audio_only.m3u8
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:4
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:4.076956,
bee_audio_only0.ts
#EXT-X-ENDLIST
Binary file added assets/videos/hls/bee_audio_only0.ts
Binary file not shown.

0 comments on commit e547a8e

Please sign in to comment.