- March 24, 2007
- 12,073
- 7,459
- Home Country
- Germany
- Thread starter
- Moderator
- #161
i.e. we have a keybinding "F" for Fullscreen, which is available during video playback.
[2013-03-05 02:38:56,603] [3439617] [32 ] [INFO ] - EPG: grabber initialized for 1 transponders..
[2013-03-05 02:38:56,665] [3439679] [32 ] [DEBUG] - UserFactory setting PriorityEPG : 1
[2013-03-05 02:38:56,665] [3439679] [32 ] [DEBUG] - UserFactory setting PriorityUser : 2
[2013-03-05 02:38:56,665] [3439679] [32 ] [DEBUG] - UserFactory setting PriorityScheduler : 100
[2013-03-05 02:38:57,675] [3440689] [DVB EPG timer] [INFO ] - Grab for card:#2 transponder #1/1 channel: BBC ONE
[2013-03-05 02:38:57,675] [3440689] [DVB EPG timer] [INFO ] - EpgCard: grab epg on card: #2 transponder: #0 ch:BBC ONE
[2013-03-05 02:38:57,715] [3440729] [DVB EPG timer] [DEBUG] - CardReservationBase.RequestCardTuneReservation: placed reservation with id=1, tuningdetails=DVBT:TV Sky News Freq:482000 ONID:9018 TSID:20544 SID:22080 PMT:0x2BD FTA:True LCN:82 BandWidth:8
[2013-03-05 02:38:57,715] [3440729] [DVB EPG timer] [DEBUG] - TvServerEventDispatcher.DoOnTvServerEventAsynch : tvserver event received but no users found...
[2013-03-05 02:38:57,725] [3440739] [DVB EPG timer] [INFO ] - card: Tune on card 2 to subchannel Sky News
[2013-03-05 02:38:57,725] [3440739] [DVB EPG timer] [DEBUG] - card: user: epg:2:-1 tune DVBT:TV Sky News Freq:482000 ONID:9018 TSID:20544 SID:22080 PMT:0x2BD FTA:True LCN:82 BandWidth:8
[2013-03-05 02:38:57,725] [3440739] [DVB EPG timer] [DEBUG] - TvCardBase: tune channel, DVBT:TV Sky News Freq:482000 ONID:9018 TSID:20544 SID:22080 PMT:0x2BD FTA:True LCN:82 BandWidth:8
I had a look at the source:Turbosight: failed to load the DLL
but in line 394 you check if the source file does NOT exists and if it does NOT exist you try to copy it..._libHandle = NativeMethods.LoadLibrary(targetFilename);
if (_libHandle == IntPtr.Zero || _libHandle == null)
so this if must be:if (!File.Exists(sourceFilename))
{
try
{
File.Copy(sourceFilename, targetFilename);
}
and now it worksif (!File.Exists(targetFilename))
this path is equal to: targetFilename in the tve3.5 source:if (!File.Exists("Plugins\\CustomDevices\\Resources\\tbsCIapi" + _apiIndex + ".dll"))
{
try
{
File.Copy("Plugins\\CustomDevices\\Resources\\tbsCIapi.dll", "Plugins\\CustomDevices\\Resources\\tbsCIapi" + _apiIndex + ".dll");
}
would be nice if you could make the change in the source and than commit itstring targetFilename = Path.Combine(resourcesFolder, "tbsCIapi" + _apiIndex + ".dll");