NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 13 14 15 16 17 … 56 Next »
Music Plugin Beta

Thread Closed 
 
  • 0 Vote(s) - 0 Average
Music Plugin Beta
7ore
Offline

Senior Member

Posts: 598
Threads: 68
Joined: Mar 2006
#61
2008-10-22, 05:38 AM
MixMan Wrote:Are you running GBPVR in Client-Server mode and using Music plugin from clients?

No, I run GBpvr one one machine, without any server setup (yet).
But the music is mostly located on another machine...

On my other comps i mostly use winamp.
BekKen
Offline

Junior Member

Posts: 33
Threads: 1
Joined: Feb 2007
#62
2008-10-22, 08:02 AM
mvallevand Wrote:MixMan, I am having real problems with folders where the track number isn't correct. It looks like if there is not a a logical 1,2,3,4 order nothing works. For example if track 1 is missing nothing shows in the folder in folder view and in artist or album view there are holes if there are missing files.

Also if there are duplicates in the collection for album instead of both songs being shown for the track nothing is shown.

Martin

If the items in a UiList (the lists where you see your data) aren't unique there will be 'holes' in the list but when selecting an item the data/text will be shown. This has to do something with API, I think. (You get these holes because 2 or more items are missing data in the tag). MAYBE I can do something to check the collection of data when building the UiList, if data missing, put in "something else".

About nothing showing because track 1 is missing in Folder View I have to double-check, sounds very strange because in Folder View there are no what so ever attempts to use any tag info, only pure directory info for folders and files.
[SIZE="1"]PC: WinXP, AMD X2 4200+, 2 GB RAM, X800XT, Twinhan DVB-T+floppyDTV-T, Zalman Water Cooling, Thermaltake fanless PSU = noice-less from 1/2 meter!
Codecs: CyberLink MPEG2/H.264 + CCCP + OggVorbis + AC3 Filter
Storage: 1 TB OS/Data
Video: Samsung 42'' PDP
Audio: Pioneer VSX709, 5.1 analog input[/SIZE]
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#63
2008-10-22, 08:40 AM
BekKen Wrote:If the items in a UiList (the lists where you see your data) aren't unique there will be 'holes' in the list but when selecting an item the data/text will be shown. This has to do something with API, I think. (You get these holes because 2 or more items are missing data in the tag). MAYBE I can do something to check the collection of data when building the UiList, if data missing, put in "something else".

About nothing showing because track 1 is missing in Folder View I have to double-check, sounds very strange because in Folder View there are no what so ever attempts to use any tag info, only pure directory info for folders and files.

Its actually when 2 items have exactly the same properties. Sub makes a hash of each item. Sounds like you just need to work on a little more "uniqueness" in the properties of the items, use filename, or some other item to guarantee each item is unique.
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#64
2008-10-22, 01:29 PM (This post was last modified: 2008-10-22, 05:14 PM by MixMan.)
Both Bekken and I feel pretty satisfied with the functionality of the Music plugin....for now. We have discussed what will be the next steps in implementation of features.
But those will wait until we have them figured out in our minds.
So there will not be anymore "major" features implemented in the near future.
Some bug fixes and smaller adjustment may be fixed though....if there is the need for it.

So the next update will be the "final" version.
Thats what we think right now.
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,118
Threads: 957
Joined: May 2006
#65
2008-10-22, 03:27 PM
Do you think BekKen and you will be able to add text entry support for the MVP/PCH remote and the PCH keyboard as entry devices in this final?

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#66
2008-10-22, 04:25 PM
BekKen Wrote:If the items in a UiList (the lists where you see your data) aren't unique there will be 'holes' in the list but when selecting an item the data/text will be shown. This has to do something with API, I think. (You get these holes because 2 or more items are missing data in the tag). MAYBE I can do something to check the collection of data when building the UiList, if data missing, put in "something else".

About nothing showing because track 1 is missing in Folder View I have to double-check, sounds very strange because in Folder View there are no what so ever attempts to use any tag info, only pure directory info for folders and files.
There is an easy fix to this. Just add an additional parameter to the UiList object with a count number or some other piece of information that helps make the entries unique. It doesnt have to be a data element which is displayed.
BekKen
Offline

Junior Member

Posts: 33
Threads: 1
Joined: Feb 2007
#67
2008-10-22, 05:01 PM
sub Wrote:There is an easy fix to this. Just add an additional parameter to the UiList object with a count number or some other piece of information that helps make the entries unique. It doesnt have to be a data element which is displayed.

You mean like adding a dummy parameter not used? like @dummyNotUsed=i and then just increase i with 1 for every item added? If so,.. very simple and should be a "rule" when building the uilist :-)
[SIZE="1"]PC: WinXP, AMD X2 4200+, 2 GB RAM, X800XT, Twinhan DVB-T+floppyDTV-T, Zalman Water Cooling, Thermaltake fanless PSU = noice-less from 1/2 meter!
Codecs: CyberLink MPEG2/H.264 + CCCP + OggVorbis + AC3 Filter
Storage: 1 TB OS/Data
Video: Samsung 42'' PDP
Audio: Pioneer VSX709, 5.1 analog input[/SIZE]
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#68
2008-10-22, 05:33 PM
Yep, something like that should do it.

It might need to be a string. I cant remember exactly.
BekKen
Offline

Junior Member

Posts: 33
Threads: 1
Joined: Feb 2007
#69
2008-10-22, 07:41 PM
Thanks Sub and Psycik, seems like adding a counter as string did the trick. I sent to MixMan and he will update Wiki and stuff with new plugin.
[SIZE="1"]PC: WinXP, AMD X2 4200+, 2 GB RAM, X800XT, Twinhan DVB-T+floppyDTV-T, Zalman Water Cooling, Thermaltake fanless PSU = noice-less from 1/2 meter!
Codecs: CyberLink MPEG2/H.264 + CCCP + OggVorbis + AC3 Filter
Storage: 1 TB OS/Data
Video: Samsung 42'' PDP
Audio: Pioneer VSX709, 5.1 analog input[/SIZE]
7ore
Offline

Senior Member

Posts: 598
Threads: 68
Joined: Mar 2006
#70
2008-10-22, 07:59 PM
I deleted everything in the "Music" folder and installed the 0.51. Selected "recreate database" and "consistency check" (thought it might help as i wanted to move my musicart). Opened GBpvr and as i play a song, I select "Details" and get the exception below:
Maybe I was too fast and the database wasn't updated. I hope you get some info from the stack.
Code:
Information om att aktivera JIT-felsökning i stället för den
här dialogrutan finns i slutet av det här meddelandet.

************** Undantagstext **************
System.NullReferenceException: Objektreferensen har inte angetts till en instans av ett objekt.
   vid indexer_player.Music.classPopupDetails.getPostBackgroundRenderList()
   vid GBPVRX2.Popups.PopupBase.GetRenderList()
   vid GBPVRX2.BaseButtonListUiTask.GetRenderList()
   vid indexer_player.Music.Main.GetRenderList()
   vid GBPVRX2.MenuTask.x9006c1ed9ccb79de.GetRenderList()
   vid GBPVRX2.x0061b801bdf12d35.xdb012c437aec4a40(Boolean xd23bf32f3b17e3be)
   vid GBPVRX2.x0061b801bdf12d35.xf11d09f6e9e3e55b()
   vid GBPVRX2.xdd215986d9a64c86.ReturnToMainMenu()
   vid GBPVRX2.x0061b801bdf12d35.WndProc(Message& m)
   vid System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   vid System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   vid System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (16): « Previous 1 … 5 6 7 8 9 … 16 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  New LG and Samsung NextPVR Web Smart TV App available for beta testing. fred250 388 141,837 2017-04-10, 10:46 AM
Last Post: fred250
  Bluray Player Beta whurlston 23 12,261 2015-10-05, 09:32 AM
Last Post: Lao Pan
  Movies beta vik 66 31,076 2015-03-31, 03:13 AM
Last Post: Lao Pan
  New plugin - MovieTrailers imilne 11 6,323 2014-09-25, 08:16 AM
Last Post: imilne
  HD Logos for the NPVR WebRadio Plugin Lao Pan 3 3,434 2014-02-09, 01:32 PM
Last Post: Lao Pan
  Files plugin tmrt 13 7,535 2014-01-09, 11:16 PM
Last Post: mvallevand
  Need beta testers for "NextPVR for Samsung" (client for samsung smart tvs/blurays) reven 61 27,916 2013-12-03, 10:21 AM
Last Post: martint123
  imageGrabLite Beta mvallevand 84 62,145 2013-10-04, 06:40 PM
Last Post: mvallevand
  Plex Plugin - first release psycik 141 59,859 2013-06-16, 08:59 PM
Last Post: JonnyCam
  SSPlus Screensaver - Photo Slideshow Beta ACTCMS 40 14,406 2012-12-07, 01:49 AM
Last Post: ACTCMS

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

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

Linear Mode
Threaded Mode