Rfid-Reader (part2)

Nikolaus Gradwohl2008-01-18T22:23:00+00:00

due high public demand ( i have a reader! ) i post a photo of my rfid-reader. The small black dot on the plastic-disk surrounded by copper-wire is the actual rfid-transponder chip - awsome

RFID-Reader

read more ...

Multicard setup with freevo

Nikolaus Gradwohl2008-01-15T07:07:00+00:00

I'm using freevo for my vdr and like it very much. Recently in austria terestrial analog tv has bin turned off and everyone had to switch to DVB. So our block got a big Satelite-Receiver and a box that transcodes the DBV-S signal to DBV-C. and i hat to put a DVB-C card in my freevo box ...

to "make the hunt more interessting (shirkan - the jungle-book)" some of the channels still come over analog-tv. freevo handles mulit-card setups very well, but only if the cards are the same type. So i had to patch it a little to support my setup where some channels have to be recorded and viewed from one card and some from the other.

i extended the 'VideoGroup' class by a "vcr_cmd" member, and wrote a little record-pluin that sets the command depending on the channel description

VIDEO_GROUPS = [
    VideoGroup(vdev='/dev/video0',
            adev=None,
            input_type='tuner',
            input_num=0,
            tuner_norm='pal',
            tuner_chanlist='europe-west',
            desc='Default Video Group',
            group_type='ivtv',
            record_group=None,
            vcr_cmd='/usr/local/bin/ivtv-record.py %(filename)s %(channel)s %(seconds)s',
      ),
    VideoGroup(
            vdev='/dev/video0',
            adev=None,
            input_type='tuner',
            input_num=0,
            desc='DVB Viewer',
            group_type='dvb',
            record_group=None,
            vcr_cmd = 'mencoder -oac copy -ovc copy -o %(filename)s -dvbin card=1
                            "dvb://%(channel)s" -endpos %(seconds)s'
      )
    ]

ivtv-record is a small script i have written because i cant use the ivtv plugin anymore (it doesnt use the cmd variables). my record-plugin is a extenion to the "generic-record.py" where i changed the line 'self.rec_command = config.VCR_CMD % cl_options' to 'self.rec_command = vg.vcr_cmd % cl_options'

read more ...

network environments

Nikolaus Gradwohl2008-01-15T06:45:00+00:00

i have a new version of my "detect where i am" script that workes absolutly hands free. i rarely turn my mac off, most of the times it stayes in sleep mode when im traveling from one site to another.

so i use "SleepWatcher" a great tool from Bernhard Baehr to trigger a script that scanns for known wlans and changes my proxy settings

read more ...