Zeitgesteuerte Aufnahme mit Ical

Hochi

Golden Delicious
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:
Code:
      Code:
     tell application "Audio Recorder"

    record
   
end tell
delay 10 -- 10 Sekunden aufnehmen


tell application "Audio Recorder"
    
    stop
    quit
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!o_O

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:

trent

Gast
Eine direkte AppleScript-Lösung für iCal habe ich zwar nicht parat. Aber wenn ich Dich richtig verstanden habe, möchtest Du (z.B. Streams???) Radio u.ä. auf Deinem Mac mitschneiden? Wenn ja, empfehle ich Dir dafür Audio Hijack (link ist eine Vergleichstabelle zwischen der Pro- und der Light-Version). Ich persönlich nutze Audio Hijack Pro (32$). Damit kannst Du ziemlich bequem alle möglichen Audioquellen mitschneiden, mit verschiedenen Effekten versehen und ähnliches mehr. Sehr nützlich für Radiosendungen etc...Man kann z.B. (Pro-Version) ein bestimmtes Datum und die Applikation einstellen und darüber dann Sendungen mitschneiden.
 

Hochi

Golden Delicious
Registriert
26.01.07
Beiträge
9
Nein eigentlich möchte ich keine Streams mitschneiden.
Ich suche eher ein Programm, dass mir zu unterschiedlichen Tagen und unterschiedlichen Zeiten Ton vom Micro aufnimmt
Und in Ical hab ich das alles genau eingetragen (wann und wo)
Darum brauch ich ein Script, dass mir eine Audioaufzeichnung startet und beendet
 

trent

Gast
Geht grdsl. mit oben erwähntem Programm auch...
 

space

Neuer Berner Rosenapfel
Registriert
02.12.05
Beiträge
1.949
Hi Hochi!


Code:
tell application "Audio Recorder"
	set next file name format to ("XYZ")
	set output folder path to ("/Users/Dein Username/u/s/w")
	record
	
	delay 10 -- 10 Sekunden aufnehmen
	
	stop
	quit
	
end tell

Ich weiss nicht, ob dir bekannt ist, dass man mit %y:%m:%d %H.%M.%S eine Aufnahme nach Erstellungs-Datum und -Uhrzeit benennen kann (Gerne auch mit anderen Zwischenzeichen statt : und . )

Gruss