Audiorecorder-plugin

Aus VDR Wiki
Wechseln zu: Navigation, Suche

Inhaltsverzeichnis

Beschreibung

Autor(en): Herbert Attenberger

Hinweis
Hinweis

Das Plugin befindet sich noch im pre-Stadium.


Mit dem Plugin werden automatisch Musiktitel im Hintergrund mit entsprechender Benennung und ID3-Tag aufgenommen. Die titelweise Aufnahme läuft parallel auf bis zu 12 Radiokanälen der ARD mit dem Feature Radiotext plus , wie z.B. "DAS MODUL", Eins_Live, YOU_FM, WDR_2, SWR3 usw., sobald eine DVB-Karte frei ist, oder auf den entsprechenden Transponder umgeschaltet wird.

Als Dateiformat kann momentan zwischen dem original-Format mp2 MPEG-1_Audio_Layer_2 und dem mp3-Format (mit einstellbarer Bitrate) gewählt werden. Beide Dateiformate können ohne Probleme mit dem mp3-plugin wiedergegeben werden, oder mit weiterer Software in andere Formate gewandelt werden.

In einem Nachbearbeitungsprozess kann einstellbar über das Setup-Menü ein fade-in und/oder fade-out Effekt hinzugefügt werden. Dadurch wird ein ungenauer Anfang bzw ein ungenaues Ende verwischt.

Zukünftig wird das Plugin um weitere Aufnahmemechanismen (wie z.B. die Aufnahme von PayRadio Sendern mit der Titel/Artist Bezeichnung im EPG wie Premiere , DMX ...) erweitert.

Bilder

Einstellungen
Status


Softwareanforderungen

Installation

Source

cd $SOURCEDIR
tar xvzf taglib-<VERSION>.tar.gz
cd taglib-<VERSION>
./configure --prefix=/usr/local
make
make install
cd -

tar xvzf lame-<VERSION>.tar.gz
cd lame-<VERSION>
./configure --prefix=/usr/local
make
make install

cd -
tar xvzf ffmpeg-<VERSION>.tar.gz
ln -s ffmpeg-<VERSION> ffmpeg
cd ffmpeg
./configure --prefix=/usr/local --enable-mp3lame --enable-shared
make
make install
ldconfig

Arch-Linux

pacman -S taglib lame

Crux

prt-get depinst taglib lame ffmpeg

Debian

apt-get install libtag1 libtag1-dev lame ffmpeg libavcodec-dev

Gentoo

emerge taglib lame
EXTRA_ECONF="--enable-libmp3lame --enable shared" emerge ffmpeg

SuSE

yast -i taglib-devel lame

Konfiguration

Es ist das Aufnahme Verzeichnis zu erstellen, bleibt natürlich jeden selbst überlassen welches es sein soll, als Bsp.

mkdir -p /mp3/audiorecorder

Dieses ist wie folgt zu übergeben.

-P"audiorecorder -r /mp3/audiorecorder"


Parameter

Parameter (kurz) Parameter (lang) Beschreibung
-r <DIR> --recdir=<DIR> Aufnahmeverzeichnis (zwingend notwendig !)
-d <LEVEL> --debug=<LEVEL> Debug-Level (0 = aus, 1 = nur Fehler, 2 = Fehler und weitere Informationen)

Sonstiges

Tipps

Radio Sender mit den besten Ergebnissen

auf Astra:

DAS MODUL;ARD BR:12265:hC34:S19.2E:27500:0:161=deu:0:0:28406:1:1093:0

besondere Sendungen

NDR2-Livekonzerte (Programmübersicht), immer Montags ab 21 h (mit zum Teil exklusiven, unveröffentlichten Originalaufnahmen)


Versions-Historie

Version Datum Beschreibung Link
0.1.0-pre6 05.09.2006
  • fixed a possible crash in cXmlCache::copy_to_objects()
  • added the namespace "a-land" to tinyxml to avoid a segfault when used together with the setup plugin/path
0.1.0-pre5 01.09.2006
  • added casts to uint64_t to avoid an integer overflow (suggested by egal & lordjaxom on www.vdrportal.de, cDispatcher::check_free_disc_space()).
  • added "min. free disc space (in mb)" to setup menu. the recording is stopped if the free space on the recording-directory is smaller than this value (suggested by egal on www.vdrportal.de).
  • added "max. tracks in queue" to setup menu. the recording is stopped if this value is achived. recording is startet again at 25 % of this value (suggested by egal on www.vdrportal.de).
  • now artist and title are converted to capital letters (for better detecting of doubled recordings).
  • after switching a channel, the next receiver is attached after at minimum 30 seconds (thx to andipiel from www.vdrportal.de, cDispatcher()).
  • removed track.c and track.h
  • introduced caching (xml-base.[c,h], xml-cache.[c,h] and cache.[c,h]). tinyxml is used for the xml-handling, so thx a lot to the authors ... look at http://www.grinninglizard.com/tinyxml/ for more informations.
  • introduced menu and browser (menu.[c,h], browse[c,h], browse-item[c,h])
  • code cleanup, replaced most c-functions with the according c++/stl function.
  • add "pause if osd is open" to setup menu.
  • moved hr3, hr1 and swr3 to the end of the channels-list (dispatcher.c)
  • added possible album, track or year-values (trackinfo.h)
0.1.0-pre4 17.07.2006
  • complete rewrite of the recording stuff. now there are up to !!! 12 !!! parallel recordings possible (cDispatcher()).
  • better/more checks of the rtp_tags (cRds::correct_rtp_tag()).
  • fixed a bug in cRds::set_next_frame().
  • some cosmetic changes.
  • introduced service-interface for communication with other plugins (you can use the header file service.h).
  • reduced the verbosity of the plugin. debugging could be enabled on stdout with the commandline argument -d or --debug=.
0.1.0-pre3 26.06.2006
  • a small bugfix in cRds::decode_rtp().
0.1.0-pre2 26.06.2006
  • replaced localtime with thread-safe localtime_r (cAudioreceiver::get_path()).
  • try to catch wrong rtp-tags (cRds::correct_rtp_tags()).
  • add support for reencoding into mp3 format.
0.1.0-pre1 16.06.2006
  • Initial revision.

Links

  1. FFmpeg
  2. Lame
  3. Taglib - Audio Meta-Data Library
  4. Homepage des Plugins
  5. [1]
  6. ältere Announcements
  7. Announcement Version 0.1.0-pre6
In anderen Sprachen