• Apfeltalk ändert einen Teil seiner Allgemeinen Geschäftsbedingungen (AGB), das Löschen von Useraccounts betreffend.
    Näheres könnt Ihr hier nachlesen: AGB-Änderung
  • Viele hassen ihn, manche schwören auf ihn, wir aber möchten unbedingt sehen, welche Bilder Ihr vor Eurem geistigen Auge bzw. vor der Linse Eures iPhone oder iPad sehen könnt, wenn Ihr dieses Wort hört oder lest. Macht mit und beteiligt Euch an unserem Frühjahrsputz ---> Klick

zeitgesteuerte Aufnahme

bz.mac

Gast
Moin,

ich nehme ab und an mal Sendungen vom Radio auf. Bisher habe ich das mit meiner Linux-Kiste gemacht. Sat-Receiver optisch-out -> Recher optisch-in und dann ein kleines Script per at Kommando gestartetet.
Code:
Syntax nur ungefaehr!!
arecord -d <Zeitdauer> -D 0:2 -f | oggenc -q 8 -Q -d "2006-11-26" -t <TITLE> -g <GENRE> - -o ~/aufnamen/meineAufname.ogg
Und nach der Aufnahme faehrt er autmotisch per at und halt wieder runter.

Das dumme ist nur, dass der Rechner zwar per Bios zwar aufgeweckt werden kann, aber nur, wenn er vorher schon mal an war. Was mich schon immer geaergert hat ist, dass somit die Zeitschaltuhr, an den das ganze Geraffel haengt, nichts bringt.
Jetzt habe ich gelernt, dass mein Mac nicht nur einen optischen Eingang hat, sondern auch ueber die Systemsteuerung geweckt und schlafen gelegt werden kann.
Das Programm oggenc ist auch schon installiert. Auch der AT-Deamon laeuft auf der Kiste. Was mir fehlt ist so etwas wie das arecord von Alsa.
Weder 'ne Suchmaschine noch die Forensuche brachte etwas ans Tageslicht. (Ausser anderen, die das auch suchen...)
Ich habe zwar schon Audiocoder OSX gefunden, welches zeitgesteuert aufnehmen kann. Aber das hat irgendwie noch Probleme mit dem optischen Eingang.
"Audio Recorder" ist auch nicht schlecht und sicherlich koennte man etwas mit dem automatischem Einloggen und Applescript zaubern.

Ich moechte nur einfach gern ein kleines simples Kommandozeilenprograemmchen.

Kennt jemand irgendetwas in der Art?

Danke

bz.mac
 

Hochi

Golden Delicious
Registriert
26.01.07
Beiträge
9
Apple Script Zeitgesteuerte Audo Aufnahme

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

Mein "TestScript" ist folgendes:
Code:
tell application "Audio Recorder"

    record
   
end tell
beep 4


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 unter mp3 zu speicher, das Programm zu minimieren und eine warteschleife anstett meinem "beep3" einzubaun! aber vielleicht kennt sich ja noch jemand aus!
Hier hab ich noch was nützliches gefunden!

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


mfg Hochi
 
Zuletzt bearbeitet: