NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) v
1 2 3 4 5 … 20 Next »
NextEnd v5 trial release

 
  • 0 Vote(s) - 0 Average
NextEnd v5 trial release
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,845
Threads: 177
Joined: Aug 2016
#91
2019-12-14, 04:37 PM
(2019-12-14, 04:34 PM)VCR58 Wrote: I believe I did. It looks like there is only 3.1.0 versions in the dotnet folder.

I forgot to mention this if for my Debian 10 install
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,122
Threads: 957
Joined: May 2006
#92
2019-12-14, 08:16 PM
@VCR58

I was closing off some windows and you have a few script issues to deal with

2019-12-13 02:45:47.283 [DEBUG][75] Starting: bash -c "'/var/opt/nextpvr/scripts/PostUpdateEPG.sh' "
2019-12-13 02:45:47.307 [ERROR][77] /var/opt/nextpvr/scripts/PostUpdateEPG.sh: line 2: syntax error near unexpected token `newline'
2019-12-13 02:45:47.307 [ERROR][77] /var/opt/nextpvr/scripts/PostUpdateEPG.sh: line 2: `taskkill /IM NextEnd.dll /f >'

taskkill is not a linux command and that is not how you redirect stdout it should be > /dev/null

I then checked another one of your files and you are using the > NUL syntax which will likely be creating a file for you and could cause you additional issues on multiple events.

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,845
Threads: 177
Joined: Aug 2016
#93
2019-12-15, 08:32 PM
(2019-12-14, 08:16 PM)mvallevand Wrote: @VCR58

I was closing off some windows and you have a few script issues to deal with

2019-12-13 02:45:47.283 [DEBUG][75] Starting: bash -c "'/var/opt/nextpvr/scripts/PostUpdateEPG.sh' "
2019-12-13 02:45:47.307 [ERROR][77] /var/opt/nextpvr/scripts/PostUpdateEPG.sh: line 2: syntax error near unexpected token `newline'
2019-12-13 02:45:47.307 [ERROR][77] /var/opt/nextpvr/scripts/PostUpdateEPG.sh: line 2: `taskkill /IM NextEnd.dll /f >'

taskkill is not a linux command and that is not how you redirect stdout it should be > /dev/null

I then checked another one of your files and you are using the > NUL syntax which will likely be creating a file for you and could cause you additional issues on multiple events.

Martin

Thanks for the help with this Martin. I'm not much of a command line guy.

Here's what my scripts look like now. They seemed to work yesterday for the game I recorded.

ParallelProcessing.sh

#!/bin/bash
/opt/dotnet/dotnet /var/opt/nextpvr/Plugins/NextEnd/NextEnd.dll --oid $3

PostStartup.sh
#!/bin/bash
/opt/dotnet/dotnet /var/opt/nextpvr/Plugins/NextEnd/NextEnd.dll --monitor --cancel

PostUpdateEPG.sh
#!/bin/bash
/opt/dotnet/dotnet /var/opt/nextpvr/Plugins/NextEnd/NextEnd.dll --monitor

Rex
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,122
Threads: 957
Joined: May 2006
#94
2019-12-15, 08:41 PM
That seems better but I'd still add the > /dev/null to keep my debug spam out of the logs.

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,845
Threads: 177
Joined: Aug 2016
#95
2019-12-15, 08:57 PM
(2019-12-15, 08:41 PM)mvallevand Wrote: That seems better but I'd still  add the  > /dev/null to keep my debug spam out of the logs.

Martin
OK. Would > /dev/null be added to the end of all 3 scripts?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,122
Threads: 957
Joined: May 2006
#96
2019-12-15, 09:15 PM
Yes that would be good.

Martin
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,122
Threads: 957
Joined: May 2006
#97
2019-12-16, 09:23 PM
I have update post one with a new version compiled for .netcore 3.1 There are a couple of changes to reduce spam in the nrecord log.

- NextEnd debug output goes to stderr
- removed NShared.RecordingServiceProxy.GetInstance().GetServerStatus() , instead I just check if the configured port is listening.

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,845
Threads: 177
Joined: Aug 2016
#98
2019-12-31, 06:50 PM
I downloaded the new nextend and tried it with my linux v5 server and I get some errors in the nrecord.log file...

2019-12-31 12:40:12.295 [DEBUG][8] Starting: bash -c "'/var/opt/nextpvr/scripts/PostStartup.sh' "
2019-12-31 12:40:12.306 [ERROR][4] /var/opt/nextpvr/scripts/PostStartup.sh: line 1: #!/bin/bash: No such file or directory
2019-12-31 12:40:12.500 [ERROR][6] NEXTPVR_INSTALLDIR /opt/nextpvr/system/
2019-12-31 12:40:12.501 [ERROR][12] NEXTPVR_DATADIR /opt/nextpvr/system/data/
2019-12-31 12:40:12.501 [ERROR][12] NEXTPVR_DATADIR_USERDATA /var/opt/nextpvr/
2019-12-31 12:40:12.548 [ERROR][12] 2020-01-05 18:35 -0500
2019-12-31 12:40:12.549 [ERROR][4] 1/5/2020 5:35:00 PM
2019-12-31 12:40:12.549 [ERROR][4] Not Sunday
2019-12-31 12:40:12.550 [ERROR][4] 2019-12-31 22:30 -0500

the nextend-monitor.log file is generated so I think it started ok. Any idea what the errors are about especially the one that says "No such file or directory"?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,122
Threads: 957
Joined: May 2006
#99
2019-12-31, 06:56 PM
I am going to guess that you used a Window editor and there is a CRLF on that line.

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,845
Threads: 177
Joined: Aug 2016
#100
2019-12-31, 07:12 PM (This post was last modified: 2019-12-31, 07:21 PM by VCR58.)
(2019-12-31, 06:56 PM)mvallevand Wrote: I am going to guess that you used a Window editor and there is a CRLF on that line.

Martin
Well, I actually used libreOffice Writer from the Debian 10 Plasma desktop evironment. I copied the scripts from the Fifrefox web browser of this forum and pasted them into the editor and saved as text file.

Also, I tried using nano from the command line just now to get rid of any CRLF but get the same results.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (44): « Previous 1 … 8 9 10 11 12 … 44 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  NextEnd Docker Install Mark-McG 61 9,503 2023-08-30, 09:15 PM
Last Post: mvallevand
  Comskip + NextEnd VCR58 12 2,866 2023-06-30, 02:26 PM
Last Post: mvallevand
  NextEnd Extension Mechanism jcole998 7 3,060 2020-05-24, 03:39 PM
Last Post: jcole998
  NextEnd V4 jcole998 1 1,907 2020-05-18, 01:35 PM
Last Post: mvallevand
  NextEnd: "Sports event monitor did not start" antenna 37 13,272 2019-10-27, 12:22 AM
Last Post: mvallevand
  NextEnd Interruption jcole998 2 1,974 2019-09-02, 05:54 PM
Last Post: jcole998
  NextEnd Readiness jcole998 24 9,041 2019-06-01, 01:33 PM
Last Post: jcole998
  Nextend help CDinger 5 4,197 2018-11-05, 03:59 PM
Last Post: mvallevand
  NextEnd not extending sports event antenna 26 12,111 2018-10-11, 04:25 PM
Last Post: mvallevand
  NextEnd Broken? jcole998 6 4,471 2018-09-15, 01:24 PM
Last Post: jcole998

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode