#!/sw/bin/kaptain start "tagtheora" -> command buttons; command -> "/usr/bin/env python tagtheora.py " options; options :framed -> tags " " inputfile; inputfile "File to tag:" -> " "@infile; tags :vertical :double -> title_tag artist_tag album_tag license_tag copyright_tag date_tag location_tag organization_tag comment_tag; title_tag "Title" -> " --title=\"" title_disp "\" " | !@ ; title_disp -> @string="" ; artist_tag "Artist" -> " --artist=\"" artist_disp "\" " | !@ ; artist_disp -> @string="" ; album_tag "Album" -> " --album=\"" album_disp "\" " | !@ ; album_disp -> @string="" ; license_tag "License" -> " --license=\"" license_disp "\" " | !@ ; license_disp -> @string="" ; copyright_tag "Copyright" -> " --copyright=\"" copyright_disp "\" " | !@ ; copyright_disp -> @string="" ; date_tag "Date" -> " --date=\"" date_disp "\" " | !@ ; date_disp -> @string="" ; location_tag "Location" -> " --location=\"" location_disp "\" " | !@ ; location_disp -> @string="" ; organization_tag "Organization" -> " --organization=\"" organization_disp "\" " | !@ ; organization_disp -> @string="" ; comment_tag "Comment" -> " --comment=\"" comment_disp "\" " | !@ ; comment_disp -> @string="" ; buttons :horizontal -> @action(command)="Run tagtheora" @close="Close" @preview(start,"Lucidatypewriter",400,100,"Close Preview")="Preview";