@cinadmin Unfortunately I cant post my question directly here, as the wordpress spam protection thinks my post is suspicious.
Please find the file attached, and if possible post this for me, since I cant do it.
Thanks and best regards,
Christopher
(Edited by PYSmith BUT it would not let me put it in either so you will have to read the cinel.txt file - it does not like the technical data out of ffprobe)
Dear Cinelerra-gg community,
I recently came across a really good setup for the GoPro mount while downhill mountain biking: A chest strap. I can highly recommend this, especially with any wide angle camera since it is an awesome perspective.
In this setup, the GoPro (in my case) is mounted upside down, and it stores the orientation information (if recognized correctly) in its meta data, check this after
ffprobe GH011430.MP4 (check the attached file for results of the ffprobe)
…
Metadata:
creation_time : 2020-07-05T10:30:19.000000Z
handler_name : GoPro SOS
Unsupported codec with id 0 for input stream 2
Unsupported codec with id 100359 for input stream 3
Unsupported codec with id 0 for input stream 4
The mpv player in my ubuntu 20.04 linux machine uses this information to flip the image correctly (while still using full hardware decoding, so perfectly smooth image), while cinelerra does not, apparently?
Could you guys please give me a guide whats the best approach here? In the viewer you cant apply any filters, and even later on it is from a resource point of view a waste to use those filters, I guess?
By the way, sometimes the camera gets mixed up and does not store this meta data information correctly, so an easy workaround for mpv player to play it smooth and with the correct rotation is to just ffmpeg copy to a new file with new meta data information, so like this:
ffmpeg -i input.MP4 -c copy -metadata:s:v:0 rotate=180 output_rotate.MP4
This way you dont loose any information and it is super fast; the old file you may just delete.
Thanks a lot! Cheers!
cinel.txt