flutter_vlc_player
flutter_vlc_player copied to clipboard
Slow loading external stream on iOS
Hi. Thank for the amazing package.
I have small issue with iOS, it take about 5-10 second for the stream appear, is there anything I can do to fix that issue?
Android: rtsp://username:[email protected]:554/Streaming/Channels/101 => Appear Instantly rtsp://username:[email protected]:554/Streaming/Channels/101 => Appear Instantly
Android: rtsp://username:[email protected]:554/Streaming/Channels/101 => Appear Instantly rtsp://username:[email protected]:554/Streaming/Channels/101 => Take 5-10 second for the stream to appear.
This is my VlcPlayer options
VlcPlayer(
aspectRatio: 16 / 9,
url: widget.url,
isLocalMedia: false,
controller: _videoViewController,
// Play with vlc options
options: [
'--quiet',
// '-vvv',
'--no-drop-late-frames',
'--no-skip-frames',
'--rtsp-tcp',
],
hwAcc: HwAcc.DISABLED,
// or {HwAcc.AUTO, HwAcc.DECODING, HwAcc.FULL}
placeholder: Container(),
),
live stream is not workin on ios for me. I think I missed some configurations in info.plist file. Can you please help me?
rtmp://my.domain.com:5935/live/test can it work? I am using rtmp, not rtsp.
Hi!, I have 5 to 10 seconds of delay to see the first frames in iOS, any update with this? Thanks!
I have almost a minute of delay and I get many times this message in the debug console:
"Unable to determine our source address: This computer has an invalid IP address: 0.0.0.0"
After it loads the message stops showing.
I have tried to connect to local proxy, and read the logs, IOS trying to connect as UDP with flag '--rtsp-tcp'
Hi!, I also have 5 to 10 seconds of delay to see the first frames in iOS, any update with this? Thanks!
any updates?