pl_mpeg
pl_mpeg copied to clipboard
What a fantastic library
It took me 30 minutes to integrate into my project https://github.com/QuantScientist/TorchRayLib Once I am done, I shall credit you of course.
Can you work on https://github.com/phoboslab/pl_mpeg/issues/12?
Yes a brilliant library indeed! @phoboslab, do you know how complex it would be to read frames with pl_mpeg from transport stream MPEG .TS files?
@7890 adding another demuxer (the plm_demux
part) should be pretty straight forward. I have written a TS demuxer before for jsmpeg (which is probably non-spec compliant in many ways). Transcribing this wouldn't be too much work, but I really dislike the format and don't have a specific use-case for it at the time.
What would you need this for?
The scenario would be to play a live / semi-live stream that is served in chunks. It would replicate jsmpeg's capabilities eg. using ffmpeg -f segment ... and m3u8 to create .ts chunks that can be played with jsmpeg. The network part would not be covered, some other process would get and concatenate the .ts chunks that then are feed to pl_mpeg in some way.