Page 1 of 1

Disabling sprop-parameter-sets options

Posted: 04 Aug 2011 14:44
by Moriquendi
Hi,

I am trying to transcode a live stream's video into h264 format. On the receiver side, I have a SIP telephony that can only handle baseline profiles and sps isnt supported. When I try to transcode the stream using;

Code: Select all

:sout=#transcode{vcodec=h264,width=128,height=96,vb=400,venc=x264{profile=baseline,level=3.0}}:duplicate{dst=rtp{dst=...
and the wireshark logs tells me;

Code: Select all

fmtp:96 packetization-mode=1;profile-level-id=42c01e;sprop-parameter-sets=Z0LAHtkBYJbARAAUWFQExLQCPFi5IA==,aMuMsg==;
So, I want to make sure that the transcoded fmtp looks something like;

Code: Select all

fmtp:96 packetization-mode=1;profile-level-id=42c01e;
Is there a way to disable these parameters from command line or do I need to dig into the code?

Thanks,