For runtime, not strictly needed but nice to have:
- transcode and mencoder (not strictly needed if you won't manipulate any video)
+- exif (to be able to show all EXIF data of a picture)
Compiling and Installing Quick Start
menu.append(exif = Gtk::ImageMenuItem.new(utf8(_("View EXIF data"))))
exif.image = Gtk::Image.new("#{$FPATH}/images/stock-list-16.png")
exif.signal_connect('activate') { show_popup($main_window,
- utf8(`identify -format "%[EXIF:*]" #{fullpath}`.sub(/MakerNote.*\n/, '')),
+ utf8(`exif -m #{fullpath}`),
{ :title => utf8(_("EXIF data of %s") % File.basename(fullpath)), :nomarkup => true, :scrolled => true }) }
menu.append(Gtk::SeparatorMenuItem.new)
end