View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 8 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Wed Nov 08, 2006 4:19 pm 
Offline
Joined: Tue Apr 12, 2005 6:14 pm
Posts: 12
Location: Brooklyn, NY
I just installed R5D1, and am encountering this strange problem...

I'm able to watch LiveTV just fine, and cycle through channels and record shows that way. When a scheduled recording comes along while I'm watching LiveTV, it changes the channel appropriately and records it just fine.

However, if I'm not watching LiveTV when the time comes to record, nothing gets recorded at all. The recording shows up under "Watch Recordings," but with a blank preview image, and when I attempt to watch it, I get a "The file for this recording can not be found" error. And it's true... Only the files from having watched LiveTV exist, and none from scheduled recordings that took place while I wasn't watching LiveTV.

I searched around the Wiki and forums didn't find anything that pertained to this exact situation.

Any help is much appreciated!

Thanks,
jazzcrazed


Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 09, 2006 4:56 am 
Offline
Joined: Tue Aug 08, 2006 7:08 pm
Posts: 561
Location: UK
Have you had a look at your /var/log/mythtv/mythbackend.log files?
Also on your blank files, are the files 0 bytes long? (ls -l /myth/pretty)

_________________
Updated 2019/10/26: AthlonII X2 265 Gigabyte GA-970A-DS3P
16Gb PC 1866 DDR3, 500GB+2TB+4TB SATA HDD,
SATA DVD-RW Asus DRW-24D5MT , NVIDIA GeForce GT1080
Hauppauage Nova-T 500, Nova-T LinHes R8.6.1


Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 09, 2006 7:56 pm 
Offline
Joined: Thu Apr 20, 2006 10:31 pm
Posts: 17
jazzcrazed

I have the same problem but I have not looked for the answer because I still need to get other things working first. I just leave it on watch tv all the time.

I have also noticed that if I boot and never watch tv or recordings just boot and leave it alone the scheduled recordings will record.

I will be watching this thread when I get the serial port-directv control to work this will be the next thing I work on.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Nov 10, 2006 7:52 pm 
Offline
Joined: Tue Apr 12, 2005 6:14 pm
Posts: 12
Location: Brooklyn, NY
Okay, this is very strange, but lately, the scheduled recordings actually WORK, even when I'm not already watching live tv.

bruce, I've checked out the log files per your advice. Here's a log file that logged both recordings that happened while I was watching live tv, and recordings that failed when I wasn't already watching:

http://jazzcrazed.com/temp/mythbackend.log.3

A lot in there, but I think starting at line 154 is relevant to the scheduled recording while watching, and line 195 starts the portion of the log for an attempted scheduled recording while I wasn't watching that failed.

Now here's a recent log reflecting successful recordings:

http://jazzcrazed.com/temp/mythbackend.log.1

I think 59 starts the relevant part of the log.

The only difference I can see is regarding the channel changing. I use an IR blaster to control a Scientific Atlanta 1850 (using the SA 2000 programming file).

Here's a bit from the failed recording:

Code:
2006-11-06 21:00:02.344 TVRec(1): Changing from None to RecordingOnly
changing to 4
/etc/irblaster/channel_change.sh: line 7: SA2000: command not found
2006-11-06 21:00:03.398 ret_pid(0) child(16936) status(0x0)
/usr/bin/irsend: could not connect to socket
/usr/bin/irsend: Permission denied
2006-11-06 21:00:04.401 ret_pid(16936) child(16936) status(0x100)
2006-11-06 21:00:04.404 ChannelBase: external tuning program exited with error 1
2006-11-06 21:00:04.405 TVRec(1) Error: Failed to set channel to 4. Reverting to kState_None
2006-11-06 21:00:04.406 TVRec(1): Changing from RecordingOnly to None


And from the successful recording:

Code:
2006-11-08 19:00:04.291 TVRec(1): Changing from None to RecordingOnly
changing to 27
/etc/irblaster/channel_change.sh: line 7: SA2000: command not found
2006-11-08 19:00:05.633 ret_pid(0) child(25793) status(0x0)
/usr/bin/irsend: could not connect to socket
/usr/bin/irsend: Permission denied
2006-11-08 19:00:06.549 ret_pid(-1) child(25793) status(0x0)
2006-11-08 19:00:06.552 External Tuning program exited with no error
2006-11-08 19:00:06.616 Started recording: MythBusters "Barrel of Bricks": channel 1027 on cardid 1, sourceid 1


In the first case, there's a couple of lines:
2006-11-06 21:00:04.401 ret_pid(16936) child(16936) status(0x100)
2006-11-06 21:00:04.404 ChannelBase: external tuning program exited with error 1


In the second:
2006-11-08 19:00:06.549 ret_pid(-1) child(25793) status(0x0)
2006-11-08 19:00:06.552 External Tuning program exited with no error


That's the only difference I can see between the failed and successful recordings, but maybe I'm missing something. Even then, I don't know what either means.

Don't ask me what happened between the two that made one work where the other failed. But since then, it's been recording just fine.

Wish I could be more helpful, mythin!


Top
 Profile  
 
 Post subject:
PostPosted: Fri Nov 10, 2006 11:36 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
What do your /etc/irblaster/channel_change.sh and /etc/irblaster/irblasterd.conf look like? I think this could happen if there is more than one line starting with "name" in the conf file.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Nov 11, 2006 10:27 am 
Offline
Joined: Tue Apr 12, 2005 6:14 pm
Posts: 12
Location: Brooklyn, NY
/etc/irblaster/channel_change.sh:
Code:
#!/bin/bash
 
echo "changing to $1"
 
REMOTE_NAME=SA2000
$(grep ^[[:space:]]*name[[:space:]] /etc/irblaster/irblasterd.conf |
  awk '{ print $2 }')
 
for digit in $(echo $1 | sed -e 's/./& /g'); do
sleep 0.2
/usr/bin/irsend --device=/dev/irblasterd SEND_ONCE $REMOTE_NAME $digit
sleep 0.5
done

/usr/bin/irsend --device=/dev/irblaster SEND_ONCE $REMOTE_NAME SELECT


/etc/irblaster/irblasterd.conf:
Code:
#
# this config file was automatically generated
# using lirc-0.6.5(serial) on Mon Jun  3 17:36:12 2002
#
# contributed by
#
# brand:                        Scientific Atlanta
# model no. of remote control:
# devices being controlled by this remote: Explorer 2200 settop box
#

begin remote

  name   SA2000
  flags CONST_LENGTH|RAW_CODES
  eps            30
  aeps          100

  ptrail          0
  repeat     0     0
  gap    100240
 frequency 57600
     
 begin raw_codes

          name MUTE
              972     802     971     802    1887     778
              971     798     971     798     972     798
              971     798     972     798     971    1677
              972     802    1887    1656     992

          name POWER
             3450    3229     894    2468     891    2468
              893     778     892    2468     891    2469
              917    2444     891    2468     892    2469
              891     779     892     778     918     752
              917     754     917     752     892    2471
              889     779     892     779     892     777
              892     779     892     777     868    2492
              892    2469     891    2470     890

          name GUIDE
             3397    3285     890    2470     840    2519
              916     755     891    2470     839    2520
              891     780     891    2474     860    2495
              892     778     917     754     890     780
              891     781     864     804     917    2443
              865     805     891     779     866    2495
              864     805     892     779     891    2469
              865    2495     891    2469     866

          name INFO
             3449    3231     918    2441     920    2440
              920     750     947    2414     920    2440
              920     750     894     777     919     750
              947    2413     921     750     919     750
              920     751     919     752     918    2441
              921     749     895     776     919    2441
              920    2440     920    2441     920     749
              921    2439     921    2440     921

          name UP
             3396    3285     915    2444     919    2442
              918     752     916    2444     919    2441
              919     751     916    2445     919     751
              890     780     916     753     917     754
              942     729     889     780     916    2445
              919     751     915     756     914    2448
              916     752     916    2444     918    2442
              919    2441     918    2443     918

          name DOWN
             3421    3261     890    2470     918    2442
              919     751     916    2446     917    2441
              919    2442     918    2442     918     752
              916    2444     919     751     890     780
              916     755     915     755     915    2445
              919     753     914     755     889     781
              889     781     916    2444     919     752
              889    2471     919    2441     918

          name LEFT
             3427    3255     918    2441     924    2437
              920     750     918    2442     920    2441
              919    2440     921    2439     921     750
              919     751     944     726     919     752
              917     753     918     751     944    2417
              920     750     893     777     919     751
              919     752     918    2441     921    2440
              920    2440     920    2440     921

          name RIGHT
             3424    3258     892    2466     921    2439
              896     774     920    2441     920    2440
              920     750     920     751     945    2414
              921     750     919     751     920     750
              919     752     919     751     919    2440
              921     750     918     752     918    2442
              920    2440     921     749     918    2443
              920    2440     920    2441     919

          name SELECT
             3424    3257     944    2416     919    2442
              919     750     918    2442     920    2441
              919     751     943     727     918    2442
              920    2440     920     752     916     752
              969     702     917     753     892    2468
              919     751     892     778     918    2442
              924    2436     921     750     917     753
              918    2443     919    2441     919

          name SETTINGS
             3402    3278     871    2491     921    2438
              921     749     922    2440     919    2441
              919    2440     921     749     921     750
              895    2465     920    2440     921    2440
              920     749     896     775     921    2439
              920     749     923     748     895     775
              922    2439     920    2440     920     749
              897     774     896     774     921

          name EXIT
             3400    3279     896    2464     921    2439
              921     750     895    2465     921    2439
              921     749     898     772     896    2465
              920    2440     920     750     920    2441
              920     749     896     774     870    2491
              921     749     921     749     895    2465
              921    2440     920     749     922     748
              897    2464     920     750     896

          name PGUP
             3425    3255     920    2440     920    2440
              921     749     895    2466     920    2440
              920     749     920    2441     896    2464
              921     749     919    2445     917    2440
              920     750     920     750     920    2441
              921     748     921     749     920    2440
              921     750     919     752     919    2440
              921     749     921     750     919

          name PGDN
             3400    3281     921    2438     921    2441
              920     749     895    2465     896    2465
              920    2440     920    2440     920    2440
              921     749     896    2465     895    2465
              920     750     895     775     920    2440
              921     749     921     750     895     775
              896     774     896     774     921    2439
              921     749     921     751     894

          name VOLUP
              995     778    1886     779     994     775
              995     777     993     774     996     774
              995     775     995    1654    1885     778
              995     775     995     774     995

          name VOLDN
              996     778     971     802    1862     803
              970     799     996     774     995     774
              996     774     995    1654    1886     778
              996     773     971    1678     991

          name CHUP
             3421    3259     916    2444     918    2443
              918     751     917    2444     919    2441
              919    2441     919     751     916    2444
              919    2441     919    2443     918     751
              941     729     916     755     917    2442
              919     752     916     754     891     778
              918    2444     918     751     916     754
              917     753     916    2445     919

          name CHDN
             3421    3260     915    2445     918    2442
              919     751     891    2469     919    2441
              927     745     915    2444     919    2441
              919    2441     919    2442     918     752
              915     755     890     780     917    2443
              919     752     916     754     915    2445
              919     751     915     755     890     781
              914     756     916    2445     917

          name A
             3425    3258     916    2442     920    2441
              919     751     918    2442     919    2441
              920    2440     920    2441     919    2441
              919    2441     920     750     917    2443
              920     751     917     752     919    2442
              920     750     918     753     917     753
              917     753     942     728     917     753
              918    2442     920     750     942

          name B
             3398    3283     916    2443     892    2470
              892     778     892    2468     891    2475
              886     779     916     754     892     777
              892     778     919    2442     891    2468
              918     753     892     778     891    2469
              892     778     892     778     918    2443
              891    2469     892    2467     893    2469
              891     778     918     753     892

          name C
             3396    3283     891    2469     892    2468
              892     778     917    2444     892    2468
              892    2469     891     778     892     779
              893     777     892    2468     892    2468
              918     752     893     777     892    2469
              892     778     892     778     867     802
              918    2444     917    2442     868    2492
              893     778     892     779     916

          name 1
             3424    3257     890    2470     865    2495
              891     780     892    2468     865    2495
              892     777     891     780     892     779
              890     780     916    2444     865     805
              891     779     917     753     916    2445
              865     805     916     754     892    2469
              865    2494     916    2445     865    2495
              891     779     917    2443     866

          name 2
             3422    3258     916    2444     865    2496
              889     782     915    2444     865    2495
              917    2444     839     830     891     780
              915     755     890    2470     864     806
              917     753     891     780     866    2495
              864     805     891     779     892     779
              865    2494     865    2496     891    2469
              865     805     891    2469     865

          name 3
             3397    3284     916    2443     892    2468
              892     779     893    2467     892    2468
              917     753     892    2469     891     778
              893     778     891    2469     892     778
              918     753     890     779     893    2468
              891     779     893     778     891    2469
              892     777     893    2468     891    2468
              917     754     943    2417     892

          name 4
             3421    3261     890    2470     839    2520
              917     753     891    2470     865    2495
              917    2443     865    2495     890     781
              891     778     891    2470     865     804
              895     776     892     779     891    2468
              866     805     917     753     943     727
              866     805     889    2471     865    2494
              892     780     916    2444     865

          name 5
             3396    3282     920    2441     892    2467
              894     778     891    2468     892    2469
              891     780     866     802     893    2470
              890     779     918    2443     891     777
              892     779     918     752     892    2468
              892     779     918     752     918    2443
              891    2469     891     779     891    2469
              892     778     891    2468     893

          name 6
             3396    3284     918    2442     866    2494
              892     778     917    2444     866    2494
              917    2444     865     804     893    2468
              890     780     916    2445     890     779
              892     779     891     778     918    2443
              891     778     892     779     892     779
              891    2468     892     778     919    2444
              889     778     893    2468     891

          name 7
             3398    3282     893    2467     892    2468
              893     779     891    2469     891    2468
              919     752     892    2467     892    2469
              891     779     892    2468     892     777
              893     778     918     752     892    2468
              893     779     916     753     918    2442
              892     779     891     778     893    2468
              892     778     893    2467     892

          name 8
             3448    3232     892    2468     866    2494
              892     779     892    2467     867    2494
              891    2469     866    2495     891    2469
              865     805     968    2394     864     804
              918     753     891     779     892    2468
              866     804     917     754     891     780
              916     752     917     754     892    2469
              865     804     893    2468     890

          name 9
             3422    3258     891    2469     839    2521
              891     780     892    2468     824    2536
              916     754     916     755     891     779
              866    2494     839    2522     891     778
              892     778     890     781     915    2448
              837     831     891     779     890    2470
              837    2523     942    2418     838     832
              892     778     890    2471     839

          name 0
             3398    3284     891    2469     890    2469
              893     779     891    2468     892    2468
              892    2468     892     778     892     779
              891    2469     892    2468     893     778
              892     777     893     777     893    2469
              891     778     892     779     868     802
              917    2443     892    2469     890     779
              891     779     892    2468     893

          name LAST
             3422    3258     891    2471     916    2443
              891     780     891    2469     272    3088
              865     805     916    2445     308    3052
              890    2469     892     779     915     756
              889     781     889     780     890    2471
              890     779     889     781     891    2471
              272    1397     890     779     891     781
              890    2469     448    2912     917

          name FAV
             3423    3257     918    2442     944    2417
              917     753     892    2469     890    2471
              324    3036     890    2469     379     289
              167    2525     891    2470     379    2981
              890     780     378     270     242     781
              866     806     889    2469     786     884
              891     779     891     779     892     779
              916     754     890     779     892     778
              891    2470     839

          name REW
             3420    3258     916    2445     326    3033
              891     780     916    2443     891    2469
              916    2445     838     831     918     754
              890    2471     837     832     916    2444
              838     832     891     779     916    2445
              838     831     892     779     890     780
              892    2469     839    2520     891     780
              915    2444     836     836     890

          name PLAY
             3448    3233     916    2444     891    2469
              917     753     892    2468     918    2443
              941    2420     891    2468     917     754
              915     755     914    2446     918    2443
              916     754     916     753     945    2416
              943     727     941     729     918     752
              917     753     919    2442     916    2444
              915     755     943     728     916

          name FF
             3420    3259     917    2442     946    2415
              918     752     916    2445     918    2441
              943     728     917     753     942     728
              892    2470     864     806     889    2471
              865     805     918     752     916    2443
              944     726     892     779     891    2470
              891    2469     915    2445     917     753
              890    2471     222    1447     891

          name PAUSE
             3421    3259     891    2470     787    2573
              890     780     916    2444     840    2520
              892    2468     864     806     917    2444
              839     831     890     780     891     779
              891     780     891     779     889    2471
              839     831     916     755     915     754
              892    2469     839     830     917    2444
              840    2521     891    2469     840

          name STOP
             3398    3284     889    2471     325    3036
              891     779     890    2470     395     290
              140    2535     889     781     890     781
              889    2470     274    1397     891    2470
              272    3087     917     754     890     780
              889    2472     293    1377     890     779
              916    2444     448    2913     916     754
              866    2495     325    1344     891     779
              915

          name REC
             3421    3258     917    2444     916    2444
              942     729     942    2420     889    2469
              992    2367     942     730     891    2468
              917     754     916    2443     892    2470
              892     777     916     754     892    2467
              943     730     916     754     891     779
              917    2442     917     754     943    2417
              918     753     915     754     892

          name BYPASS
             3450    3231     891    2470     890    2470
              917     753     916    2447     913    2445
              273    3088     889     780     890    2470
              891    2469     916     755     890     780
              942     727     918     752     916    2444
              890     782     916     754     865     805
              891    2469     891     780     889     781
              891    2468     259    3102     866

          name TV/VCR
            19945    3915     612    1873     560    1926
              560    1925     561     931     560     931
              587     905     559     931     563     931
              557     932     561    1925     585     908
              583    1901     559     931     586     905
              585     907     610    1875     561    1924
              561    1926     559    1926     535    1951
              559    1925     586     907     585    1899
              560     931    1048    7898    3707    3862
              587    1899     586    1899     586    1900
              559     932     586     908     323

      end raw_codes

end remote


There is more than one line starting with "name," but once in the remote name section, and one each for each button name in the remote codes section.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Nov 11, 2006 11:16 am 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
jazzcrazed wrote:
Code:
REMOTE_NAME=SA2000
$(grep ^[[:space:]]*name[[:space:]] /etc/irblaster/irblasterd.conf |
  awk '{ print $2 }')


Well, I wasn't firing on all cylinders last night/early this morning but that's definitely broken. Change the line that says:
Code:
REMOTE_NAME=SA2000

to read:
Code:
REMOTE_NAME=\

and make sure that there's no spaces after the backslash (\). Before it was changed, the code there was trying to get the name(s) from the config file. Althought that looks a little odd too...


Top
 Profile  
 
 Post subject:
PostPosted: Sat Nov 11, 2006 6:20 pm 
Offline
Joined: Tue Apr 12, 2005 6:14 pm
Posts: 12
Location: Brooklyn, NY
tjc,

Tried that change, and the only result is that changing channels skitzes out... It cycles through all 10 digits once or twice, and settles on a single digit that seems to be the last digit of whatever channel number was entered.

But it works fine with REMOTE_NAME=SA2000 :?:

Mythin, I just noticed what you said about scheduled recordings from a fresh boot without ever turning on live tv. I'll try that now and see what happens.

Thanks!


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 


All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 6 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu