Skip to content
Open
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
Next Next commit
feat(android): allow exoplayer to detect source format
  • Loading branch information
puckey committed Sep 23, 2025
commit 2d2b341a010d50d8e562227f34b025126973e1b5
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ class MediaFactory (
"dash" -> createDashSource(mediaItem, factory)
"hls" -> createHlsSource(mediaItem, factory)
"smoothstreaming" -> createSsSource(mediaItem, factory)
else -> createProgressiveSource(mediaItem, factory)
else -> {
mediaFactory.setDataSourceFactory(factory)
mediaFactory.createMediaSource(mediaItem)
}
}
}

Expand Down
Loading