Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add rtsp support #3677

Merged
merged 17 commits into from
Apr 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: force rtsp stream to use rtsp mine type
  • Loading branch information
olivier bouillet committed Jan 3, 2023
commit 397e02ee01ec9336be0b9ad56b24cafd69893c53
6 changes: 5 additions & 1 deletion examples/basic/src/VideoPlayer.android.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ class VideoPlayer extends Component {
type: 'mpd',
},
{ description: '(no url) Stopped playback', uri: undefined },
{ description: 'rtsp', uri: 'rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4' },
{
description: 'rtsp',
uri: 'rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4',
type: 'rtsp'
},
{
description: '(no view) no View',
noView: true,
Expand Down