recreate dvr log
Added by Martin Kaufhold almost 11 years ago
Hi community,
I'm pretty new to tvheadend and try to import tons of vdr recordings.
I can convert the vdr recordings to Mkv files, but I think I also need to generate corresponding dvr log entries to make them visible in the list of tvheadend recordings.
Unfortunately I don't know how.
Any help is appreciated.
Cheers,
luphi
Replies (7)
RE: recreate dvr log - Added by Martin Kaufhold almost 11 years ago
Is there really no way to make MKV files visible under recordings?
Cheers,
luphi
RE: recreate dvr log - Added by cy clic almost 11 years ago
I have a similar issue.
I moved the recording destination folder on the tree for housekeeping
and have now lost all entries in recordings list in tvheadend and its clients
though of course all the .mkv files are all there
and new recordings show up ok.
What is the reason for them not all being recognised?
RE: recreate dvr log - Added by Morten Trab over 10 years ago
Found any solution to this?
I'm having same issues, migrating from Mediaportal as backend to TVH.
RE: recreate dvr log - Added by Martin Kaufhold over 10 years ago
No, and I already switched back to vdr.
Sorry
RE: recreate dvr log - Added by Morten Trab over 10 years ago
In the meantime I think I cracked a part of the "mystery".
I only need to find a way to identify the UID of a named channel, the rest I've got figured out now.
Once I get the last bits right I'll make som sort of script for the procedure.
RE: recreate dvr log - Added by Michal Leinweber over 10 years ago
I'm interested in Morten's solution, but in meantime I gave up in this.
Specially because I have too many recordings and it is too slow to show recordings in PVR plugin of XBMC. Instead of this I shared my recordings folder with NFS. To add EPG information to recordings I use .NFO files generated for each recording in post-recording script (Post-processor command in TVHeadend digital recorder configuration). Configured as: "/usr/local/bin/write_nfo "%f" "%t" "%d" %S "%c"
Script is simple:
#!/bin/bash DATUM=`date -d @$4 "+%d.%m.%Y %H:%M"` cat > ${1%.mkv}.nfo <<-EOF <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <tvshow> <title>$2</title> <plot>$DATUM - $5 $3</plot> <playcount>0</playcount> </tvshow> EOF
RE: recreate dvr log - Added by Roberto Resecco about 9 years ago
Hi all,
Dunno if this thread is still interesting for someone.
I wrote a couple of python scripts to recreate dvr logs.
They are customized for my environment, but editing variables after import section they can be easily adapted for anyone.
Once logs are created in the temp folder, they can be moved to dvr/logs folder.
I did not understand how log file names are originally created by TVH, so I made my own way.
If someone at TVH can explain how to create correct names, I will implement the algo in the scripts.
A special requirement is MediaInfoDLL python library to extract data from mkv files.
These scripts did not harm my systems. Hope the same for yours. Use them at your sole own risk ;-)
Bye!
rdl.4.1.py (3.35 KB) rdl.4.1.py | Rebuild DVR logs - TVH 4.1 | ||
rdl.py (3.24 KB) rdl.py | Rebuild DVR logs - TVH 3.x - 4.0 |