NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Linux v
« Previous 1 … 22 23 24 25 26 … 34 Next »
Had comskip working, now it's not.

 
  • 0 Vote(s) - 0 Average
Had comskip working, now it's not.
baj1
Offline

Senior Member

Maple Grove, MN, USA
Posts: 553
Threads: 91
Joined: Jan 2006
#1
2020-11-01, 05:36 AM
So I had comskip working for at least a few days, now it's not.  I created /opt/var/nextpvr/scripts/PostProcessing.sh from Martin's post here:
https://forums.nextpvr.com/showthread.ph...#pid527373

My comskip folder appears to be intact in my home folder.

I'm not finding Comskip, comskip or "PostProcessing" in the log files either, attached.
Server: Ryzen 5 3600 3.6GHz: 16GB RAM: ASRock Phantom D/RX570: SDD: 512GB HDDs: 5TB, 8TB, 8TB
Linux Mint v20, NPVR v5.1.3.210711
Tuners: Hauppauge PVR-2250-MC Dual Tuner, HDHR Duo ATSC Tuner
Clients: Knewc on CE-ODroid N2 x2, N2+, LE-RPi4, PCs x2
CDinger
Offline

Member

Posts: 151
Threads: 30
Joined: Aug 2016
#2
2020-11-01, 03:50 PM
I'm no expert but searching your logs for "PostProcessing" reveals that permission is denied. I would look at your permissions and ownership for the PostProcessing.sh
Code:
2020-10-31 22:31:01.063 [DEBUG][14]     Starting: bash -c "'/var/opt/nextpvr/scripts/PostProcessing.sh' '/home/bmserver/Video_HD/Video_HD/KARE 11 News at 10/KARE 11 News at 10_20201031_22002229.ts' 11.1 1200 21 'KARE 11 News at 10'"
2020-10-31 22:31:01.065 [DEBUG][63]     > bash: /var/opt/nextpvr/scripts/PostProcessing.sh: Permission denied


Craig
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,771
Threads: 954
Joined: May 2006
#3
2020-11-01, 03:53 PM
And of course the oft-noted chmod +x on sh files which also gives permission denied.

Martin
baj1
Offline

Senior Member

Maple Grove, MN, USA
Posts: 553
Threads: 91
Joined: Jan 2006
#4
2020-11-01, 04:48 PM
Thanks.  You were both right.

Code:
/var/opt/nextpvr/scripts$ ls -latr
total 16
-rwxr-xr-x 1 nextpvr nextpvr  135 Oct 26 13:04 PreStartup.sh
-rw-r--r-- 1 root    root      77 Oct 26 23:30 PostProcessing.sh
drwxr-xr-x 2 nextpvr nextpvr 4096 Oct 31 23:41 .
drwxr-xr-x 8 nextpvr root    4096 Nov  1 07:03 ..
I swear I had done that, it's in the how-to doc I was writing for myself in case I need to rebuild.  Plus PostProcessing.sh was working at least initially, I tested it right after I set it up last weekend.  Makes me wonder if I lost something on a reboot (shouldn't have).  I will test again and try a reboot as well.

-Brad
Server: Ryzen 5 3600 3.6GHz: 16GB RAM: ASRock Phantom D/RX570: SDD: 512GB HDDs: 5TB, 8TB, 8TB
Linux Mint v20, NPVR v5.1.3.210711
Tuners: Hauppauge PVR-2250-MC Dual Tuner, HDHR Duo ATSC Tuner
Clients: Knewc on CE-ODroid N2 x2, N2+, LE-RPi4, PCs x2
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,771
Threads: 954
Joined: May 2006
#5
2020-11-01, 05:00 PM
That read-only permission is ok, nextpvr won't write or delete this file.

Martin
baj1
Offline

Senior Member

Maple Grove, MN, USA
Posts: 553
Threads: 91
Joined: Jan 2006
#6
2020-11-01, 05:49 PM
Interesting, now the logs indicate that comskip can't be found.

2020-11-01 11:02:01.300 [DEBUG][92] > nice: ‘comskip’: No such file or directory

The Comskip folder exists my my home folder though, as does the comskip binary.  I followed the directions on comskip github to make it, and it had worked before.

trying to run it from the terminal doesn't work either:

Code:
~/Comskip$ comskip
comskip: command not found
Server: Ryzen 5 3600 3.6GHz: 16GB RAM: ASRock Phantom D/RX570: SDD: 512GB HDDs: 5TB, 8TB, 8TB
Linux Mint v20, NPVR v5.1.3.210711
Tuners: Hauppauge PVR-2250-MC Dual Tuner, HDHR Duo ATSC Tuner
Clients: Knewc on CE-ODroid N2 x2, N2+, LE-RPi4, PCs x2
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,771
Threads: 954
Joined: May 2006
#7
2020-11-01, 05:55 PM
When you built comskip did you do the make install?

Martin
baj1
Offline

Senior Member

Maple Grove, MN, USA
Posts: 553
Threads: 91
Joined: Jan 2006
#8
2020-11-01, 06:03 PM
I took this right out of the readme.md on github.

$ git clone git://github.com/erikkaashoek/Comskip
$ cd Comskip
$ ./autogen.sh
$ ./configure
$ make

I renamed my Comskip folder and repeated the steps. There are pages and pages of output from the make instruction, but nothing that said "error".
Server: Ryzen 5 3600 3.6GHz: 16GB RAM: ASRock Phantom D/RX570: SDD: 512GB HDDs: 5TB, 8TB, 8TB
Linux Mint v20, NPVR v5.1.3.210711
Tuners: Hauppauge PVR-2250-MC Dual Tuner, HDHR Duo ATSC Tuner
Clients: Knewc on CE-ODroid N2 x2, N2+, LE-RPi4, PCs x2
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,771
Threads: 954
Joined: May 2006
#9
2020-11-01, 06:15 PM
Did you even try "make install" that I suggested You might need "sudo make install"

Martin
baj1
Offline

Senior Member

Maple Grove, MN, USA
Posts: 553
Threads: 91
Joined: Jan 2006
#10
2020-11-01, 07:08 PM
Not yet, I got booted off by the boss and was banished by my office. Although I guess I could ssh in and try it.
Server: Ryzen 5 3600 3.6GHz: 16GB RAM: ASRock Phantom D/RX570: SDD: 512GB HDDs: 5TB, 8TB, 8TB
Linux Mint v20, NPVR v5.1.3.210711
Tuners: Hauppauge PVR-2250-MC Dual Tuner, HDHR Duo ATSC Tuner
Clients: Knewc on CE-ODroid N2 x2, N2+, LE-RPi4, PCs x2
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Extra - {channel} argument not working? blitz2kx 2 494 2024-06-11, 03:54 PM
Last Post: blitz2kx
  Live stream not working while recording pciber 6 849 2024-06-10, 07:48 AM
Last Post: pciber
  HDHomerun channel scan not working WagMan 2 696 2023-12-06, 02:38 PM
Last Post: mvallevand
  Keyboard hot keys not working andrew66 10 1,244 2023-05-10, 08:31 AM
Last Post: mvallevand
  Settings pages not working or display anything nonuoha 1 562 2022-11-16, 04:00 AM
Last Post: mvallevand
  IPTV channels not working after network changes spagio 11 2,268 2022-10-19, 05:41 PM
Last Post: sub
  (Some) Satellite channels not working : Writer failed to get PMT pid cheeseborough 1 806 2022-04-10, 01:26 PM
Last Post: mvallevand
  Reproducible failure after working briefly on Ubuntu Server sayssar 6 1,340 2022-03-24, 11:38 PM
Last Post: sub
  Comskip fail Armsp0 6 1,366 2022-02-09, 11:19 PM
Last Post: Armsp0
  DefaultDirectoryChoice spread not working Lanhydrock 7 1,627 2021-11-03, 07:44 PM
Last Post: sub

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

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

Linear Mode
Threaded Mode