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
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#491
2014-04-14, 04:34 AM
lukemb3 Wrote:If you prefer to stay on release builds that is fine. It means we'll add features to the server, wait a few weeks for it to be released and then sync up about adding them into the plugin.

Understood but that one is particularly annoying since it takes over the on screen log.

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#492
2014-04-15, 06:27 PM
It doesn't have anything directly to do with nextpvr and MB3.

He doesn't update my EPG.

I have a bat file in the scripts folder
http://i.imgur.com/KdPYgNm.png

This is the mc2xml folder. Normally nextpvr should do it automatically? No?
http://i.imgur.com/hSFmAL1.png
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#493
2014-04-15, 10:23 PM
Yes, you are right that post doesn't belong in this thread at all.

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#494
2014-04-16, 08:51 PM (This post was last modified: 2014-04-16, 09:15 PM by Svekke.)
What should be the right place? Smile

Also any response on the tuners information question? Smile
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#495
2014-04-17, 12:35 AM
Svekke Wrote:What should be the right place? Smile

The main support forum, many people would be able to help you.

Quote:Also any response on the tuners information question? Smile

I can confirm UJB's JSON call /public/Util/Tuner/Stat/ does return the wrong values from Swagger but I don't know if that is the because the API is broken or not. You're the only one I know who uses this API call so I'd expect it to be rough.

Martin
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#496
2014-04-17, 05:08 AM
Svekke Wrote:It doesn't have anything directly to do with nextpvr and MB3.

He doesn't update my EPG.

I have a bat file in the scripts folder
http://i.imgur.com/KdPYgNm.png

This is the mc2xml folder. Normally nextpvr should do it automatically? No?
http://i.imgur.com/hSFmAL1.png

mc2xml's "-d" parameter does not work well without the "-s" parameter: http://forums.nextpvr.com/showthread.php...2012/page3

Try removing the "-d 168".
Also, you should cd to the mc2xml folder first or it might not read the dat file (I don't remember for sure).
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#497
2014-04-17, 06:48 PM
whurlston Wrote:mc2xml's "-d" parameter does not work well without the "-s" parameter: http://forums.nextpvr.com/showthread.php...2012/page3

Try removing the "-d 168".
Also, you should cd to the mc2xml folder first or it might not read the dat file (I don't remember for sure).

Thanks, i changed it. It's now waiting until next week.

mvallevand Wrote:The main support forum, many people would be able to help you.

I can confirm UJB's JSON call /public/Util/Tuner/Stat/ does return the wrong values from Swagger but I don't know if that is the because the API is broken or not. You're the only one I know who uses this API call so I'd expect it to be rough.

Martin

Any timeframe to check this? Smile
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,186
Threads: 958
Joined: May 2006
#498
2014-04-18, 07:42 PM (This post was last modified: 2014-04-18, 11:02 PM by mvallevand.)
Svekke Wrote:Any timeframe to check this? Smile

You can try the attached until UJB has time to look into it. Overwrite the file in web\app_code\classes and restart the recording service to have it kick in properly.

Edit: removed file, use UJB's version.

Martin
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#499
2014-04-18, 10:55 PM
mvallevand Wrote:You can try the attached until UJB has time to look into it. Overwrite the file in web\app_code\classes and restart the recording service to have it kick in properly.

Martin

Thanks Martin.... this would be the patch you want to use since it returns the Tuners object.
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
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#500
2014-04-26, 06:22 PM
Thank you for the update. Sorry for the late reaction. Didn't had the time to change the stuff.

Some new question for you. Is it possible to give more information? Now i have this in MB3 --> http://i.imgur.com/xds9yem.png

We have the following class for the "live tv" tuners

Code:
public class LiveTvTunerInfo
    {
        public LiveTvTunerInfo();

        public string ChannelId { get; set; }
        public List<string> Clients { get; set; }
        public string Id { get; set; }
        public string Name { get; set; }
        public string ProgramName { get; set; }
        public string RecordingId { get; set; }
        public string SourceType { get; set; }
        public LiveTvTunerStatus Status { get; set; }
    }


So is it possible to give more information on a tuner?

public string ChannelId { get; set; } --> The current channelId (doesn't matter recording, live stream, ...)
public List<string> Clients { get; set; } --> That's something on our side
public string Id { get; set; }
public string Name { get; set; } --> The name of the tuner ( You can see it on the screenshot )
public string ProgramName { get; set; } --> The program name ( doesn't matter recording, live stream,... )
public string RecordingId { get; set; } --> When there is a recording, the recording id
public string SourceType { get; set; } --> I should ask Luke, what this means. Smile
public LiveTvTunerStatus Status { get; set; } --> Is there a status available? Like recording, live stream ....


I checked some stuff for the stream, recording. It looks the problem is when one of the two stops. And not at the start...
Not sure, but that's something i tried on my local machine..
« Next Oldest | Next Newest »

Users browsing this thread: 4 Guest(s)

Pages (56): « Previous 1 … 48 49 50 51 52 … 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,165 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,259 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,781 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