NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 3 4 5 6 7 … 93 Next »
Media Browser Integration

 
  • 0 Vote(s) - 0 Average
Media Browser Integration
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#281
2014-02-05, 10:47 PM
Svekke Wrote:What has been changed in the latest version "newa-enhanced.v2.12_20140204-2.zip" ?

The issue reported in the below quote:

Svekke Wrote:Also the version on the FTP gives a fault ....
My intention was to install the patch for the tuner. But saw the new version. Smile
But it's failing. Smile


Server Error in '/' Application.

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1061: 'managePlayList' does not contain a definition for 'getMusicLibrary' and no extension method 'getMusicLibrary' accepting a first argument of type 'managePlayList' could be found (are you missing a using directive or an assembly reference?)

Source Error:




Line 258: //util.getJSONGenres()
Line 259:
Line 260: rsp.Content = new ObjectContent<Object>(manage.getMusicLibrary(), new JsonMediaTypeFormatter(), new MediaTypeWithQualityHeaderValue("application/json"));
Line 261:
Line 262: return rsp;


Source File: c:\Users\Public\NPVR\web\App_Code\GuideServiceController.cs Line: 260



Compiler Warning Messages:

Show Detailed Compiler Output:

Show Complete Compilation Source:

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18408
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
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#282
2014-02-05, 10:48 PM
mvallevand Wrote:I know /public/DetailsService/Set/PlaybackPosition was not accepting the &sid UJB is very, very good at keeping the changelog updated.

Martin

Yep...this was in the latest build as well.....
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
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#283
2014-02-05, 10:52 PM
Svekke Wrote:Also on the "/public/Util/NPVR/Client/Initialize" there is no sid available in the swagger documentation.
I know we work locally. But so we are future proof. What is the output of the initialize?

I also should remove the following method "/public/Util/NPVR/Version/", because you have the same value in the "/public/Util/NPVR/VersionCheck/" method!

I am keeping both..... one just provides the version. The other is a comparative check which the consumer may or may not want to do. You are correct ... the version is in VersionCheck... but I am keeping both methods since they serve different purposes.

Svekke Wrote:I there also a method to check if nextpvr is available?
Does NEWA work when next pvr is not availble?

As Martin stated.... I did address this earlier.... if you can get to NEWA then NPVR is available.... if NPVR is not available either is NEWA.
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
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#284
2014-02-06, 06:04 PM
Not sure if you guys saw, but we announced chromecast support yesterday:

http://mediabrowser3.com/community/index...hromecast/

That's just a matter of days away from launching, and our testers are already having fun casting live tv to their tv's that otherwise are not already connected. And we've been getting lots of questions in our community about whether live tv and chromecast will work together (which they will).

So I'm pretty tied up but figured I'd take a shot and see if there's anyone here willing to review the current next pvr plugin and give Sven tips on getting it to completion.

The source code is here:

https://github.com/MediaBrowser/MediaBro...ns.NextPvr

But the real work is really just in one class, as we have an ILiveTvService interface that needs to be implemented:

https://github.com/MediaBrowser/MediaBro...Service.cs

So if anyone could possibly review it that would be helpful, and/or let us know about the methods that are currently unimplemented, and if they're possible or not. Thanks.
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#285
2014-02-06, 08:19 PM
What is the difference between "/public/ScheduleService/CancelRec/{scheduleOID}" and "/public/ScheduleService/CancelDelRec/{scheduleOID}" ?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#286
2014-02-06, 08:53 PM
Svekke Wrote:What is the difference between "/public/ScheduleService/CancelRec/{scheduleOID}" and "/public/ScheduleService/CancelDelRec/{scheduleOID}" ?

When you use the delete option it also removes file if it exists so it's a bit dangerous for in-progress recordings.

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#287
2014-02-06, 09:52 PM
mvallevand Wrote:When you use the delete option it also removes file if it exists so it's a bit dangerous for in-progress recordings.

Martin

With the CancelRec. If a recording is in-progress. It wil stop recording and you can watch it until you canceled?
With the CancelDelRec, when the recording is in-progress. It fails when you use this method? Or he stops recording and also remove the file....
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#288
2014-02-06, 10:08 PM
CancelDelRec in-progress should stop recording, removes record from the database and delete the file

Martin
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#289
2014-02-06, 10:47 PM
lukemb3 Wrote:So if anyone could possibly review it that would be helpful, and/or let us know about the methods that are currently unimplemented, and if they're possible or not. Thanks.

How do I find the NextPVR Addon?

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#290
2014-02-07, 07:16 PM
mvallevand Wrote:How do I find the NextPVR Addon?

Martin

You can find it here
https://github.com/MediaBrowser/MediaBro...ns.NextPvr
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (56): « Previous 1 … 27 28 29 30 31 … 56 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Looking for C# UPnP Media Server code bgowland 5 7,773 2016-12-16, 08:25 PM
Last Post: mvallevand
  Media\Show Directory mvallevand 12 6,164 2014-07-02, 10:58 AM
Last Post: sub
  Media\Shows Metadata mvallevand 2 1,956 2013-05-22, 04:09 AM
Last Post: mvallevand
  Streaming media imilne 44 13,258 2012-12-14, 04:05 AM
Last Post: mvallevand
  SkyDrive Eplorer Integration Released.....also available for Mac and iPad UncleJohnsBand 0 1,493 2012-04-24, 01:06 AM
Last Post: UncleJohnsBand
  Building a list of files in media folders (npvr Music and Videos) bgowland 2 1,967 2012-02-05, 10:29 AM
Last Post: bgowland
  Windows Media Connect - Storing stuff on a Home Server psycik 3 2,780 2009-09-29, 03:47 AM
Last Post: mvallevand
  Plugin notification of stopped media mvallevand 7 2,429 2009-08-19, 11:16 PM
Last Post: mvallevand
  GBPVR Media Events KingArgyle 1 1,624 2005-03-27, 07:12 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