This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Tool to convert Google motion JPGs (MVIMG) to MP4 video files. | |
require 'exiftool' | |
files = Dir['*.jpg'] | |
files.each do |file| | |
exif = Exiftool.new(file) | |
offset = exif[:micro_video_offset] |
OlderNewer