79376915

Date: 2025-01-22 08:11:41
Score: 1.5
Natty:
Report link

I finally got to the bottom of my problem. Looks like I used the wrong Enumeration:

Source.SetProperty("format", New GLib.Value(Gst.Constants.TIME_FORMAT))

It turns out that Gst.Constants.TIME_FORMAT is actually a time format string. What I needed was:

Source.SetProperty("format", New GLib.Value(3)) ' TimeFormat

This works regardless of whether I set a timestamp on the buffers I pass to the appsrc.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sails1000