- Registriert
- 26.01.07
- Beiträge
- 9
Bin auch auf der Suche nach einer guten Lösung zeitgesteuert Audi aufzunehmen.
Ich möchte gerne mit iCal Aufnahmen steuern.
Darum habe ich ein bisschen Gegooglel und hab schon einen Ansatz!
Dazu verwende ich folgenden Recorder: http://www.versiontracker.com/dyn/moreinfo/macosx/17392
mit Lame Plugin:http://spaghetticode.org/lame/ (einfach in den Parketinhalt dazukopieren)
Mein "TestScript" ist folgendes:
Leider bin ich mit appel script noch nicht so erfahren darum habe ich es noch nicht geschafft die Audiodatei mit mit eigenem Namen in ein angegebenes Verzeichnis zu speichern!
Hier hab ich etwas nützliches gefunden! Bin aber immer noch RATLOS!
Here's Audio Recorder's AppleScript dictionary:
Audio Recorder Suite Classes and commands for working with Audio Recorder
pause v : Pause recording
pause reference : the object for the command
record v : Start recording
record reference : the object for the command
stop v : Stop recording
stop reference : the object for the command
application n [inh. application; see also Standard Suite] : The Audio Recorder application program
elements
contains documents, input devices, output devices, profiles, windows.
properties
active input device (input device) : the active input device
active output device (output device) : the active output device
active profile (profile) : the active recording profile
current recording (recording, r/o) : the current recording
next file name format (Unicode text) : the file name format for the next recording
output folder path (Unicode text) : the folder where recordings are saved
paused (boolean, r/o) : is the recording paused?
started (boolean, r/o) : is the recording started?
stopped (boolean, r/o) : is the recording stopped?
device n [inh. item] : An audio device
properties
id (Unicode text, r/o) : the unique identifier
name (Unicode text, r/o) : the name
volume (real) : the volume
input device n [inh. device > item] : An audio device for input
elements
contained by application.
output device n [inh. device > item] : An audio device for output
elements
contained by application.
properties
monitoring (boolean) : is monitoring turned on?
supports monitoring (boolean, r/o) : does the output device support monitoring?
output file n [inh. item] : An output file
properties
duration in seconds (real, r/o) : the duration, in seconds
path (Unicode text, r/o) : the path
size in bytes (double integer, r/o) : the size, in bytes
profile n [inh. item] : A recording profile
elements
contained by application.
properties
display name (Unicode text, r/o) : the display name
identifier (Unicode text, r/o) : the unique identifier
recording n [inh. item] : A recording
properties
current file (output file, r/o) : the current file
duration in seconds (real, r/o) : the duration, in seconds
size in bytes (double integer, r/o) : the size, in bytes
Kann mir jemand weiterhelfen??
mfg Hochi
Ich möchte gerne mit iCal Aufnahmen steuern.
Darum habe ich ein bisschen Gegooglel und hab schon einen Ansatz!
Dazu verwende ich folgenden Recorder: http://www.versiontracker.com/dyn/moreinfo/macosx/17392
mit Lame Plugin:http://spaghetticode.org/lame/ (einfach in den Parketinhalt dazukopieren)
Mein "TestScript" ist folgendes:
Code:
Code:
tell application "Audio Recorder"
record
end tell
delay 10 -- 10 Sekunden aufnehmen
tell application "Audio Recorder"
stop
quit
Hier hab ich etwas nützliches gefunden! Bin aber immer noch RATLOS!

Here's Audio Recorder's AppleScript dictionary:
Audio Recorder Suite Classes and commands for working with Audio Recorder
pause v : Pause recording
pause reference : the object for the command
record v : Start recording
record reference : the object for the command
stop v : Stop recording
stop reference : the object for the command
application n [inh. application; see also Standard Suite] : The Audio Recorder application program
elements
contains documents, input devices, output devices, profiles, windows.
properties
active input device (input device) : the active input device
active output device (output device) : the active output device
active profile (profile) : the active recording profile
current recording (recording, r/o) : the current recording
next file name format (Unicode text) : the file name format for the next recording
output folder path (Unicode text) : the folder where recordings are saved
paused (boolean, r/o) : is the recording paused?
started (boolean, r/o) : is the recording started?
stopped (boolean, r/o) : is the recording stopped?
device n [inh. item] : An audio device
properties
id (Unicode text, r/o) : the unique identifier
name (Unicode text, r/o) : the name
volume (real) : the volume
input device n [inh. device > item] : An audio device for input
elements
contained by application.
output device n [inh. device > item] : An audio device for output
elements
contained by application.
properties
monitoring (boolean) : is monitoring turned on?
supports monitoring (boolean, r/o) : does the output device support monitoring?
output file n [inh. item] : An output file
properties
duration in seconds (real, r/o) : the duration, in seconds
path (Unicode text, r/o) : the path
size in bytes (double integer, r/o) : the size, in bytes
profile n [inh. item] : A recording profile
elements
contained by application.
properties
display name (Unicode text, r/o) : the display name
identifier (Unicode text, r/o) : the unique identifier
recording n [inh. item] : A recording
properties
current file (output file, r/o) : the current file
duration in seconds (real, r/o) : the duration, in seconds
size in bytes (double integer, r/o) : the size, in bytes
Kann mir jemand weiterhelfen??
mfg Hochi
Zuletzt bearbeitet: