-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Problems using RTSP #11160
Comments
Hello @Darthsandr, Would you be able to provide the responses to the RTSP Describe message that your server is providing? Also would you be able to provide a bug reports so we can review the logs? You can either attach them to this github issue or send them to [email protected] using a subject in the format "Issue #11160". Please also update this issue to indicate you've done this. |
Hello this is the flow between Exoplayer and our streaming servers. Exoplayer Streaming Server Exoplayer Streaming server v=0 Exoplayer Streaming server Exoplayer Streaming server Exoplayer Streaming server |
Issue: google/ExoPlayer#11160 #minor-release PiperOrigin-RevId: 534896789
Thank you for reporting your issue! A fix has been submitted to the main branch of androidx/media that should solve your problem. Eventually the fix will be brought into the release branch. Here is a link to the commit. Hopefully this helps! |
Issue: #11160 #minor-release PiperOrigin-RevId: 534896789
Hi implementation 'androidx.core:core-ktx:1.9.0' need I to update the version of these libraries? |
Issue: google/ExoPlayer#11160 #minor-release PiperOrigin-RevId: 534896789 (cherry picked from commit 85f83b1)
I updated Exoplayer lib but it's still not working; need I the update of android:media lib? Actualy I'm using the androidx.media:media:1.6.0 |
I'm trying to use the rtsp extension in an android app but I have a problem and I get a black screen without an explicit error.
My video url is rtsp://myserver:port/live/test?t=pippo
Watching streaming server's logs I see that, during the SETUP phase, the exoplayer client send this url rtsp://myserver:port/live/test/trackID=1?t=pippo while trying the same url with VLC during the same phase the streaming server logs rtsp://myserver:port/live/test/trackID=1 (whitout query parameter of the original url)
Is it possible to remove the query parameter in the url sent by exoplayer client for the SETUP session with the streaming server?
I'm using this code
val mediaitem = MediaItem.fromUri(Uri.parse(videoUrl))
val mediaSource = RtspMediaSource.Factory().setForceUseRtpTcp(true).setTimeoutMs(10000)
.createMediaSource(mediaItem)
mediaSource.addEventListener(mainHandler, mediaSourceEventListener)
player?.repeatMode = repatMode
player?.setMediaSource(mediaSource ,true)
player?.prepare()
Thanks for the response
The text was updated successfully, but these errors were encountered: