With "clear recorded Tv thumbs" deleted are only thumbs in MP thumbs folder, and i think it is the problem with new thumbs generation.
You don't have the same problem and this one isn't specific to this SVN build eitherRTV, I have the same problem, using current SVN.
Are those maybe h.264 files? Please try mtn.exe (see arguments above) from commandline as well.2009-03-04 20:36:49.102270 [Info.][PoolThread14]: VideoThumbCreator: mtn.exe has not been executed successfully with arguments: -D 8 -B 0 -E 0 -c 2 -r 2 -s 60 -t -i -w 0 -n -P "G:\TV-Server\_Recording\Abenteuer Wissen - ZDFdokukanal\Abenteuer Wissen - - 2008-08-15 - 21_45.ts"
2009-03-04 20:36:49.211629 [Debug][PoolThread14]: VideoThumbCreator: mtn.exe did not extract a thumbnail to: G:\TV-Server\_Recording\Abenteuer Wissen - ZDFdokukanal\Abenteuer Wissen - - 2008-08-15 - 21_45_s.jpg
2009-03-04 20:36:49.242875 [Info.][PoolThread14]: RecordedTV: No thumbnail created for Abenteuer Wissen - - 2008-08-15 - 21_45.ts
So seems to hang - possibly on old recordings?
It should get killed after 15 sec (but retries once - so it might "hang" / need 30s per file if something goes wrong).Any chance to let MTN "skip" erreounous files to get at least the rest?
Which does not show up at all...if (VideoThumbCreator.CreateVideoThumb(recFileName, thumbNail, true, true))
Log.Info("RecordedTV: Thumbnail successfully created for {0}", Utils.SplitFilename(recFileName));
else
Log.Info("RecordedTV: No thumbnail created for {0}", Utils.SplitFilename(recFileName));
never get finished?if (VideoThumbCreator.CreateVideoThumb(recFileName, thumbNail, true, true))
Index: TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs
===================================================================
--- TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (revision 21813)
+++ TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (working copy)
@@ -91,8 +91,10 @@
_thumbCreationActive = true;
IList<Recording> recordings = Recording.ListAll();
- foreach (Recording rec in recordings)
+ //foreach (Recording rec in recordings)
+ for (int i = recordings.Count - 1; i >= 0; i--)
{
+ Recording rec = recordings;
string recFileName = GetFileName(rec.FileName);
string thumbNail = string.Format("{0}\\{1}{2}", Thumbs.TVRecorded,
[...]
Are those maybe h.264 files? Please try mtn.exe (see arguments above) from commandline as well.
TV doesn't work for me anymore with this build. I have an analogue card (Hauppage). I get a "failed to start timeshift / unknown error". Related to the removal of the .mpg format from TV perhaps?
Emph
there are codec issues in your log
Code:2009-02-28 20:17:49.893750 [7]: Exception :TvLibrary.TvException: Cyberlink MPEG Muxer filter (mpgmux.ax) not installed Det går inte att hitta filen. (Exception from HRESULT: 0x80070002) at TvLibrary.Implementations.Analog.TvCardAnalog.AddMpegMuxer() at TvLibrary.Implementations.Analog.TvCardAnalog.BuildGraph() Exception :Cyberlink MPEG Muxer filter (mpgmux.ax) not installed Det går inte att hitta filen. (Exception from HRESULT: 0x80070002) site :Boolean AddMpegMuxer() source :TVLibrary stacktrace: at TvLibrary.Implementations.Analog.TvCardAnalog.AddMpegMuxer() at TvLibrary.Implementations.Analog.TvCardAnalog.BuildGraph()
check if your codecs are installed / registered properly .
Before issuing an observation with the new svn, I would like to check if this is really a bug or a feature:
In case you have selected an external player for the videos, is it by intention that the same player is also used for the TV-Client playback? (As it is currently done)
Cheers,