Cómo obtener los fps de un video del inspector de QuickTime Player usando applecript

2

Necesito una forma rápida y fácil de encontrar la velocidad de fotogramas de un video en Applecript. Hasta ahora, agarrarlo a través del inspector de QuickTime Player es la opción más fácil.

tell application "QuickTime Player"
    activate
    set the_movie to choose file
    open the_movie
    delay 1
    if not (document 1 exists) then return beep 1
    tell application "System Events" to tell process "QuickTime Player"
        if not ((window 1 whose name ends with "Inspector") exists) then
            keystroke "i" using {command down} -- “Show Movie Inspector” menu   command
        end if
        set theInspector to window 1 whose name ends with "Inspector"
        set {X, Y} to position of static text 1 of theInspector whose value is "FPS:"
        set theFrameRate to value of text area 1 of theInspector whose position is {X + 120, Y}
    end tell
end tell

display dialog theFrameRate

Encontré este código en Internet, pero parece que no puede ubicar el área de texto del inspector. ¿Puede alguien ayudarme? Estoy corriendo el Capitán

    
pregunta cjeccjec 19.03.2016 - 12:18

0 respuestas

Lea otras preguntas en las etiquetas