Reputation: 25
Hope all you are doing well.
Actually i was trying to stream a media file using VLC by SRT protocol. For which, srt-live-transmit is used as converter in between SRT Listener and VLC UDP streams. srt-live-transmit used to convert udp to srt streams(mpegts). But when i tried to do that, after few seconds, i got error in srt-live-transmit terminal that : No room to store incoming packet:
What should be the reason for this error? And if anyone know anything about this problem, please share info. It would be helpful. Thank you.
Upvotes: 1
Views: 724
Reputation: 31
Depending on the player, i use PlayCtrl library by hikvision and their Player and i need to return free disk space to player before playing. Otherwise i was getting the same problem.
I solved it by:
override fun getFreeDiskSpace(player: IPlayer): Long {
return 1_000_000_000L // Example: 1 GB
}
Upvotes: 0