<div>How do I unsubscribe to all email except responses to my post?<br><div class="gmail_quote"><div>On Thu, May 11, 2017 at 9:13 AM Thomas <<a href="mailto:tfreudi1@gmx.de">tfreudi1@gmx.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
I need a little help on video. What I want to do is to modify a motion vector to embed some datas (I do steganography in research) and to write a new video with out loss of datas.<br>
<br>
Currently I can write a video (just with I-frames and P-frames no<br>
B-frames) but it seems that at a moment a filter came and erase my datas. So is there any options to deactivate filters ?<br>
I find a me_method to do that but it seems it doesn't work. I use it like that :<br>
AVDictionary *opts = NULL;<br>
av_dict_set(&opts, "crf", "0", 0);<br>
av_dict_set(&opts, "preset", "placebo", 0); av_dict_set(&opts,"me_method","zero",0);<br>
av_dict_set(&opts,"flags","nomc",0);<br>
if (avcodec_open2(m_stream->codec, m_codec, &opts) < 0) {   throw -108;}<br>
Thank you for your help,<br>
Best regards,<br>
Delmas P.<br>
<br>
<br>
<br>
I guess you must add your Metadata after encoding to the encoded frame.<br>
But I do not have a solution how to  do it exactly, it may also depend on the container format you use.<br>
<br>
A long time a go I'd had a ffmpeg project and I must also put some extra data to every frame and if I remember correctly, I put it in an extra file with some kind of frame identifier, because I did'nt found a way , but this is 10 years ago.<br>
<br>
Thomas<br>
<br>
_______________________________________________<br>
Libav-user mailing list<br>
<a href="mailto:Libav-user@ffmpeg.org" target="_blank">Libav-user@ffmpeg.org</a><br>
<a href="http://ffmpeg.org/mailman/listinfo/libav-user" rel="noreferrer" target="_blank">http://ffmpeg.org/mailman/listinfo/libav-user</a><br>
</blockquote></div></div>