-
Notifications
You must be signed in to change notification settings - Fork 1
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
Synchronous data has no payload in processed stream #20
Comments
I'll take a look! Would you be able to share a video file and a code snippet that exhibits this problem? That'll make it a bit easier for me to debug. |
I will try to find a video I can share. Is there an email I can send to? I've been digging in and I believe it's because of this block, which does not write a payload for unknown types. The type is
I added the 0x00 type into the |
Sure thing -- email is my github handle and I use gmail (being cryptic to avoid the spam bots, though it's probably a lost cause). |
sent, lmk if you received |
@dbussert got it! I'm wrapping up a deadline today but hoping to be able to dig in by the end of the week. |
hey, any chance to look at this? I've modified my packaged to allow payloads on type 0, but I imagine there is a more valid fix you might know of |
@dbussert I apologize profusely for disappearing -- I hit a series of consecutive deadlines that pulled me away. I'm glad you have solved this locally for the short term, but you're right this warrants trying to find the most correct solution (and patching the package). Just wanted to let you know I'm still planning to take this on (and wanting to confirm that you do indeed have a temporary solution that has unblocked you) |
I have a MPEG-TS video with 2 data pids, one is synchronous and one async. The async is processed by
mpegts-demuxer
correctly and provides a payload, but the synchronous never has a payload (and I've verified through other tools there is one). The packet output looks like thisI've verified the same behavior in a video with only H.264 video and a synchronous data PID. Any idea why the payload is always null for synchronous data?
The text was updated successfully, but these errors were encountered: