NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) NextPVR Enhanced Web Admin (NEWA) v
« Previous 1 … 43 44 45 46 47 Next »
Enhanced Web Admin (EWA) Build 50 Released

 
  • 0 Vote(s) - 0 Average
Enhanced Web Admin (EWA) Build 50 Released
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#11
2006-11-04, 04:25 AM
Mr. Camaro Wrote:Yes I did all of that. Still no button. Just did it again, and same result. Even accessed it with a computer that has never accessed the web admin before and still no button.

Strange....the code to display the button just checks to make sure that the selected show start time is <= to the current time and that the end time of the show is > the current time + 1 minute. If those two conditions are both true or if the selected item is already recording/recorded you should see the button.

The only thing I can think of is that you are not clicking on a show that meets the above criteria.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
Mr. Camaro
Offline

Member

Posts: 174
Threads: 16
Joined: Jan 2006
#12
2006-11-04, 04:44 AM
Ok...I did some more checking and I found out that it is hosing up on this line.

bool strmAllowed = File.Exists(Path.Combine(guideParams.strmVLCLoc, "vlc.exe"));

So it is not finding vlc for some reason. It plays fine when playing another file from the manage recordings. I have vlc in c:\program files\videolan\vlc\vlc.exe and this is what is set up in the config on web admin

if I put strmAllowed = true;

after this line I get the button, but when I play I get an error.

I'll keep messing with it. If you have any suggestions let me know.

Thanks
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#13
2006-11-04, 05:03 AM
Mr. Camaro Wrote:Ok...I did some more checking and I found out that it is hosing up on this line.

bool strmAllowed = File.Exists(Path.Combine(guideParams.strmVLCLoc, "vlc.exe"));

So it is not finding vlc for some reason. It plays fine when playing another file from the manage recordings. I have vlc in c:\program files\videolan\vlc\vlc.exe and this is what is set up in the config on web admin

if I put strmAllowed = true;

after this line I get the button, but when I play I get an error.

I'll keep messing with it. If you have any suggestions let me know.

Thanks

This line just checks to see if it can find VLC in the directory that is in the config section of EWA. You should have this based on the info you gave me.

C:\Program Files\VideoLAN\Vlc\

Is that what you have?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
Mr. Camaro
Offline

Member

Posts: 174
Threads: 16
Joined: Jan 2006
#14
2006-11-04, 05:15 AM
Ok...figured it out.

I had in my config that the VLC path was

C:\Program Files\VideoLAN\VLC\vlc.exe

Found out I need to get rid of the vlc.exe

So I tried this

C:\Program Files\VideoLAN\VLC

This will then fault on this line.....

Line 323: //Start the VLC process on the server
Line 324: proc = System.Diagnostics.Process.Start(psi);

This is because you really need this in the config

C:\Program Files\VideoLAN\VLC\ --Note the last slash.

So you need the last slash as well. Without it it will crash.

Now it is WORKING......Thanks UncleJohnsBand
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#15
2006-11-04, 05:16 AM
Mr. Camaro Wrote:Ok...figured it out.

I had in my config that the VLC path was

C:\Program Files\VideoLAN\VLC\vlc.exe

Found out I need to get rid of the vlc.exe

So I tried this

C:\Program Files\VideoLAN\VLC

This gives you this.....

Line 323: //Start the VLC process on the server
Line 324: proc = System.Diagnostics.Process.Start(psi);

This is because you really need this in the config

C:\Program Files\VideoLAN\VLC\

So you need the last slash as well. Without it it will crash.

Now it is WORKING......Thanks UncleJohnsBand

Excellent....glad I could help.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
Mr. Camaro
Offline

Member

Posts: 174
Threads: 16
Joined: Jan 2006
#16
2006-11-04, 05:18 AM
Maybe you could add a little test in the config part so if you put in the wrong path it would warn you when you press submit, that the file is not there.

That was fun, I figured out a little about how the web admin is programmed and works. Not as complicated as I thought.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#17
2006-11-04, 12:42 PM
UncleJohnsBand Wrote:I have notcied that the pop-up windows get cached and to clear it you need to go to a different screen (olike I mentioned above....Manage Recordings) and clear your browser cache. Then come back to the Guide and click on a show to see the detail.

You were right (of course), emptying the cache did the trick. Great.
After that I thought I was missing the streaming button.........took me a minute to realise it's only there when you click on a show that's airing now.:o
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#18
2006-11-04, 04:13 PM
HtV Wrote:.........took me a minute to realise it's only there when you click on a show that's airing now.:o

The button should also show up if the program is currently being recorded or was recorded in the past.

As an FYI....Using Stream Now on these two instances will not delete the recording when you are done watching it and click Stop Server Stream. The only time the Stream Now recording is deleted is when you initiate it on a show that is currently airing and is not already being recorded.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
m.clizzle
Offline

Member

Posts: 98
Threads: 16
Joined: May 2006
#19
2006-11-06, 04:39 PM
just wanted to add that i love the streaming. i OWNS ALL! thanks UJB and the rest of the contributors.

i have found no problems with anything so far.
[SIZE="2"]gbpvr 1.4.7 - ewa -
Intel Xeon Server (300g esata / 1.5tb esata 3g RAM) evga fx 5200 128mb dvi out
Hauppauge PVR 150 Low Profile

The true bleed green
[/SIZE]

[SIZE="1"]REITRED[COLOR="grey"]gbpvr 1.2.9 - ewa - weather - sports 1.9.0.4 plugin
hp dc5500sf (p4 3.0HT / 300g IDE / 2g RAM) evga fx 5200 128mb dvi out
Hauppauge PVR 150 Low Profile
Harmony 659
Sony 42" Grand WEGA

[/COLOR]
[/SIZE]
Mr. Camaro
Offline

Member

Posts: 174
Threads: 16
Joined: Jan 2006
#20
2006-11-06, 06:48 PM
Streaming is working well now. I've also got it working in Linux. Using the advanced web admin and the VLC Linux version, I've got most of the functionality I need to use GBPVR in Linux.

I've got a MAME (Another great freeware program by the way) arcade set up with an arcade cabinet, and now with this I can switch over the cabinet to a TV whenever I want!
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Error with Web Admin? jksmurf 0 2,425 2019-06-20, 10:34 AM
Last Post: jksmurf
  NEWA Web Admin working OK, but have question about modern GUI playback controls tinstaafl 0 2,358 2017-03-19, 10:11 PM
Last Post: tinstaafl
  Multiple Users for Web Admin rowle1jt 5 3,997 2017-01-10, 01:00 AM
Last Post: UncleJohnsBand
  NEWA Release Build 2.17 Released 2015-08-29 UncleJohnsBand 0 8,373 2015-08-30, 08:05 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.16 Released 2015-04-25 UncleJohnsBand 0 1,903 2015-04-25, 03:18 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.15 Released 2014-10-25 UncleJohnsBand 0 2,236 2014-10-26, 09:38 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.13 Released 2014-07-21 UncleJohnsBand 0 2,143 2014-07-21, 09:13 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.11 Released 2014-01-12 UncleJohnsBand 0 2,080 2014-01-13, 03:41 AM
Last Post: UncleJohnsBand
  NEWA Release Build 2.10 Released 2013-12-30 UncleJohnsBand 0 2,266 2013-12-31, 02:49 AM
Last Post: UncleJohnsBand
  NEWA Release Build 1.34 Released 2013-03-25 UncleJohnsBand 0 7,702 2013-03-29, 03:03 AM
Last Post: UncleJohnsBand

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

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

Linear Mode
Threaded Mode