I' ve a .MOV video sent by a phone messanger app. Can I retrieve the real creation data of the file and the author? I tried with ffprobe, mediainfo and similar tool but give me only the date when I download it.
相关问题
- I want to read exif info in image in android. I ca
- Countdown to the end of the HTML5 video
- Python function to read video and convert to frame
- Is it possible to use the TestCafe .meta object to
- Thumbnails from the Vimeo website harder than YouT
相关文章
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- How do I append metadata to an image in Matlab?
- What file sytems support Java UserDefinedFileAttri
- Why MPMoviePlayerController fullscreen button icon
- FFmpeg - What does non monotonically increasing dt
- Skip UIImagePickerController Preview View?
- Stop playing video in iframe when modal is closed
So, I updated MMM's code to Python3 and improved a few things.
and...
Wouldn't you know it, just as I finished I found how to do it with exiftool, which I use for similar tasks with .jpg files. :-/
I wrote a quick Python script that can obtain the creation and modification timestamps, since those are easy to find. Finding the author is a bit harder because it can be stored in several different ways. Example usage:
Sometimes you might see a date of 1/1/1904. That means the timestamp is 0. If you see a date of 1/1/1970, the file was probably generated by FFmpeg, which doesn't store this metadata for security reasons.