From 556192da1dd136d14d88b3ece46295595f14ba10 Mon Sep 17 00:00:00 2001 From: olivier bouillet Date: Fri, 3 Jun 2022 21:51:53 +0200 Subject: [PATCH] test(android): add additional sample streams --- examples/basic/src/VideoPlayer.android.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/examples/basic/src/VideoPlayer.android.tsx b/examples/basic/src/VideoPlayer.android.tsx index 7572174f7c..0ca36fb627 100644 --- a/examples/basic/src/VideoPlayer.android.tsx +++ b/examples/basic/src/VideoPlayer.android.tsx @@ -50,18 +50,26 @@ class VideoPlayer extends Component { srcList = [ require('./broadchurch.mp4'), { - description: 'subtitles', + description: '(dash) sintel subtitles', uri: 'https://bitmovin-a.akamaihd.net/content/sintel/sintel.mpd', }, { - description: 'demo with sintel Subtitles', + description: '(mp4) big buck bunny', + uri: 'http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4', + }, + { + description: '(hls|live) red bull tv', + uri: 'https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_928.m3u8' + }, + { + description: '(mp4|subtitles) demo with sintel Subtitles', uri: 'http://www.youtube.com/api/manifest/dash/id/bf5bb2419360daf1/source/youtube?as=fmp4_audio_clear,fmp4_sd_hd_clear&sparams=ip,ipbits,expire,source,id,as&ip=0.0.0.0&ipbits=0&expire=19000000000&signature=51AF5F39AB0CEC3E5497CD9C900EBFEAECCCB5C7.8506521BFC350652163895D4C26DEE124209AA9E&key=ik0', type: 'mpd', }, - { description: 'Stopped playback', uri: undefined }, + { description: '(no url) Stopped playback', uri: undefined }, { - description: 'no View', + description: '(no view) no View', noView: true, }, ]