Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: VFAT write and read both



Renaming directories of old recordings from ext2 to VFAT style:

--- snip ---
#!/bin/bash
for old_dir in `find /video -name \*.rec -print`; do
	new_dir=`echo $old_dir |\
		sed 's/\([0-9-\.]\{13\}\):\([0-9\.]\{8\}\.rec\)/\1.\2/'`
	mv $old_dir $new_dir
done
--- snip ---

Greetings from RegExp....
CU,
Christian.


> -----Original Message-----
> From: Axel Gruber [mailto:axelgruber3@gmx.de]
> Sent: Monday, April 15, 2002 11:28 PM
> To: vdr@linuxtv.org
> Subject: [vdr] VFAT write and read both
> 
> 
> Hello all
> 
> Small Question:
> 
> with VFAT - i can switch VDR to write /video directory in VFAT-Format 
> and every Windows-Client can read the directory.
> 
> But then VDR is not able to read a Linux-VDR-style recorded DVD-R.
> 
> So my question/IDEA:
> 
> Isnīt it possible to change VDR in a way that VDR can read 
> both (VFAT and VDR-DIRECTORYSYSTEM)
> and VFAT-Switch set what VDR does write to HD
> 
> Is this possible ?
> 
> 
> 
> Second Question: if this is not possible - does anyone have a 
> script/Programm
> wich can convert a VDR-Directorysystem to a VFAT-SYSTEM (MANY 
> MANY RECORDINGS)
> 
> 
> CU
> 
> Axel
> 
> 
> 



Home | Main Index | Thread Index