gst-launch-1.0 videotestsrc ! textoverlay text=“123” ! nvvidconv ! nvv4l2h264enc ! h264parse ! qtmux ! filesink location=1.mp4 -e
I am using such a GSteamer command, but the steamer is not running, I don’t know why, can anyone explain
It may be an issue with textoverlay trying to output into NVMM memory. You may try to force its output caps to system memory:
gst-launch-1.0 videotestsrc ! textoverlay text="123" ! video/x-raw ! nvvidconv ! nvv4l2h264enc ! h264parse ! qtmux ! queue ! filesink location=test.mp4 sync=1 -e
1 Like
I tried your method, but it didn’t work. The pipe still didn’t flow, and the recorded file was empty.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.