Replies: 4 comments
-
Use an up to date PyAV |
Beta Was this translation helpful? Give feedback.
0 replies
-
Issue still persists
|
Beta Was this translation helpful? Give feedback.
0 replies
-
@WyattBlue is this reproducible for you |
Beta Was this translation helpful? Give feedback.
0 replies
-
I wouldn't have access to your localhost. I'm skeptical of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Overview
I am receiving an mpeg2ts on localhost:7000. The issue is that the stream doesn't contain any pts/dts information at all. Hence, I used the genpts flag in in fflags to generate these on the go. Here is my test code:
Expected behavior
To verify whether its an issue with my ffmpeg installation, I used ffmpeg with the
genpts
option to generate a .ts file and then usedffprobe
to check for pts/dts values.ffmpeg -fflags +genpts -i udp://localhost:7000 -c copy output.ts
followed byffprobe -select_streams v -show_frames output.ts | less
This does embed pts and dts for every frame:
Actual behavior
But when I set the same option through the PyAV code above, all the pts/dts values are printed as None.
Versions
Research
I have done the following:
Beta Was this translation helpful? Give feedback.
All reactions