Push-Nachrichten von MacTechNews.de
Würden Sie gerne aktuelle Nachrichten aus der Apple-Welt direkt über Push-Nachrichten erhalten?
Forum>Software>Filme rückwärts laufen lassen und eventuell auch speichern

Filme rückwärts laufen lassen und eventuell auch speichern

RyHoRuK27.02.1319:30
Gibt es unter MacOS X 10.7 ein Programm mit dem man Filme rückwärts laufen lassen und und auch eventuell speichern? Ich weiß, dass es mit iMovie geht, das finde ich aber recht umständlich. Kennt jemand einen Player oder Konverter mit dem das geht?
0

Kommentare

_mäuschen
_mäuschen27.02.1323:53
QuickTime Player 7 Pro

- Menu Ablage Exportieren - Film Sequenz

mit untenstehendem AppleScript die Sequenz invertieren.

- Menu Ablage Bildsequenz öffnen…
und speichern


set theFolder to choose folder

tell application "Finder"
set theFolderName to name of theFolder
set N to count files of folder theFolder
if N < 3 then return beep 2
end tell

display dialog "Rename the " & N & " files of folder “" & theFolderName & "” in reverse order?" buttons {"Cancel", "OK"} default button 2 with icon 1

tell application "Finder"
set theNames to name of files of theFolder
set theNewNames to reverse of theNames
set {theFirstName, theExtension} to {name, name extension} of file 1 of theFolder
tell me to set L1 to (offset of "." & theExtension in theFirstName) - 1
set theFiles to files (N div 2 + 1) through N of theFolder as alias list
repeat with thisFile in theFiles
get name of thisFile
set theName to text 1 through L1 of result
set name of thisFile to theName & "¿." & theExtension
end repeat
set theFiles to files of theFolder as alias list
set k to 0
repeat with thisFile in theFiles
set k to k + 1
set name of thisFile to item k of theNewNames
end repeat
end tell

tell me to activate
display dialog "The " & N & " files of folder “" & theFolderName & "” have been renamed in reverse order." buttons {"OK"} default button 1 with icon 1
0
RyHoRuK28.02.1310:22
QuickTime Player 7 kann auch im Player rückwärts spielen. Eine Funktion die QuickTime NEU leider verloren gegangen ist. Seine Lösung sieht aber interessant aus. Danke Dir.
0

Kommentieren

Diese Diskussion ist bereits mehr als 3 Monate alt und kann daher nicht mehr kommentiert werden.