I would like to press function-key when watching EyeTV recording and it grabs current frame number or current location in seconds in recording and then writes this information to log.
Only thing missing is how to grab frame number or location. This is propably not possible in current EyeTV.
This would be kind of bookmarking locations in video.
I tired get same information from QuickTime Player too but these fails:
tell application "QuickTime Player"
set testing to time of movie
end tell
tell application "QuickTime Player"
set testing to frame of movie
end tell
tell application "QuickTime Player"
set testing to index of movie
end tell
tell application "EyeTV"
try
set currentRecording to (get recording (name of player_window 1)) -- a recording is playing
set {theLength, currentPosition} to {item 1 of (get actual duration of currentRecording), current time}
on error
set {theChannel, currentPosition} to {current channel, current time} -- live TV is playing
end try
end tell