SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Customizations
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV Customizations This forums is for discussing and sharing user-created modifications for the SageTV application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss customizations for SageTV version 6 and earlier, or for the SageTV3 UI.

Reply
 
Thread Tools Search this Thread Display Modes
  #61  
Old 05-17-2006, 02:02 AM
ukmgranger's Avatar
ukmgranger ukmgranger is offline
Sage Expert
 
Join Date: Apr 2004
Location: Derby England
Posts: 609
I may be wrong here.

I thought that if I am using SageTV as a service, it is the SageClient.properties file that controls everything. I didn't think that the Sage.properties effected anything.

If this is that case - the sagetv_0.txt would have the last entry from November because that was probably the last time that I accidentally started Sage without the service.

As I said I could be very wrong here and correct me if I am.

I'll get the files posted up as soon as poss.
Reply With Quote
  #62  
Old 05-17-2006, 02:31 AM
ukmgranger's Avatar
ukmgranger ukmgranger is offline
Sage Expert
 
Join Date: Apr 2004
Location: Derby England
Posts: 609
OK, here are the files:

I will also send you a private message with more info regarding the wma's.
Attached Files
File Type: zip Logs and properties.zip (47.2 KB, 294 views)
Reply With Quote
  #63  
Old 05-17-2006, 04:24 AM
ukmgranger's Avatar
ukmgranger ukmgranger is offline
Sage Expert
 
Join Date: Apr 2004
Location: Derby England
Posts: 609
Update.

I just tried ripping in and album without 'copy protection' and this seems to import into Sage fine.

It would seem that it is the DRM side of things that is causing the problem in terms of reading the tag info.
Reply With Quote
  #64  
Old 05-17-2006, 11:16 AM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by ukmgranger
I may be wrong here.

I thought that if I am using SageTV as a service, it is the SageClient.properties file that controls everything. I didn't think that the Sage.properties effected anything.
If you're using the SageTV service, Sage.properties controls the service, and SageClient.properties controls the UI. Two processes, two properties files. You need to configure them both.

Here's the relevant sections of your Sage.properties:

Code:
SageWMP/debug=true
SageWMP/parser/all_artists=false
SageWMP/parser/file_types=cda,wma,mp3
SageWMP/parser/raw_tags=false
mediafile_metadata_parser_plugins=
seeker/music_library_import_filename_extensions=.mp3,.wav,.wma
media_player_plugin_class/669=WinampPlugin
media_player_plugin_class/aac=WinampPlugin
media_player_plugin_class/aif=WinampPlugin
media_player_plugin_class/aiff=WinampPlugin
media_player_plugin_class/amf=WinampPlugin
media_player_plugin_class/apl=WinampPlugin
media_player_plugin_class/au=WinampPlugin
media_player_plugin_class/cda=WinampPlugin
media_player_plugin_class/far=WinampPlugin
media_player_plugin_class/it=WinampPlugin
media_player_plugin_class/itz=WinampPlugin
media_player_plugin_class/kar=WinampPlugin
media_player_plugin_class/m4a=WinampPlugin
media_player_plugin_class/mdz=WinampPlugin
media_player_plugin_class/mid=WinampPlugin
media_player_plugin_class/midi=WinampPlugin
media_player_plugin_class/miz=WinampPlugin
media_player_plugin_class/mod=WinampPlugin
media_player_plugin_class/mp1=WinampPlugin
media_player_plugin_class/mp2=WinampPlugin
media_player_plugin_class/mp3=WinampPlugin
media_player_plugin_class/mtm=WinampPlugin
media_player_plugin_class/nsa=WinampPlugin
media_player_plugin_class/nst=WinampPlugin
media_player_plugin_class/ogg=WinampPlugin
media_player_plugin_class/okt=WinampPlugin
media_player_plugin_class/ptm=WinampPlugin
media_player_plugin_class/rmi=WinampPlugin
media_player_plugin_class/s3m=WinampPlugin
media_player_plugin_class/s3z=WinampPlugin
media_player_plugin_class/snd=WinampPlugin
media_player_plugin_class/stm=WinampPlugin
media_player_plugin_class/stz=WinampPlugin
media_player_plugin_class/ult=WinampPlugin
media_player_plugin_class/vlb=WinampPlugin
media_player_plugin_class/voc=WinampPlugin
media_player_plugin_class/wav=WinampPlugin
media_player_plugin_class/wma=WinampPlugin
media_player_plugin_class/xm=WinampPlugin
media_player_plugin_class/xmz=WinampPlugin
The first problem is that the SageWMP tag parser is not enabled. Since it's the service that handles media import, this explains why your DRM files aren't getting parsed.

Another minor weirdness is that you have all those different files types configured for playback through Winamp (even though the SageTV service doesn't do any playback), but not for import. If you really want to import all those file types, you need to add them to the seeker line. Otherwise my advice would be to delete the properties for the file types you're not using.

Here's the corresponding settings from your SageClient.properties:

Code:
SageWMP/debug=true
SageWMP/parser/all_artists=false
SageWMP/parser/file_types=cda,wma,mp3
SageWMP/parser/raw_tags=false
mediafile_metadata_parser_plugins=SageWMP.Parser
seeker/music_library_import_filename_extensions=.cda,.mid,.midi,.rmi,.kar,.miz,.mod,.mdz,.nst,.stm,.stz,.s3 m,.s3z,.it,.itz,.xm,.xmz,.mtm,.ult,.669,.far,.amf,.okt,.ptm,.mp3,.mp2,.mp1,.aac,.apl,.vlb,.m4a,.nsa, .ogg,.wav,.voc,.au,.snd,.aif,.aiff,.wma.cda
media_player_plugin_class=
media_player_plugin_class/cda=SageWMP.Player
media_player_plugin_class/dvd=
media_player_plugin_class/mp3=SageWMP.Player
media_player_plugin_class/mpg=
media_player_plugin_class/mpgbuf=
media_player_plugin_class/wma=SageWMP.Player
Here you have a bazillion types set up for import, but not for playback. Again, for troubleshooting purposes you probably want to pare this down to just the ones you need. Also you've got .cda in there twice, extraneous spaces in .s3m and .ogg, and a missing comma between .wma and .cda.

Fix these issues in both files and try your import again.
__________________
-- Greg
Reply With Quote
  #65  
Old 05-18-2006, 01:20 PM
ukmgranger's Avatar
ukmgranger ukmgranger is offline
Sage Expert
 
Join Date: Apr 2004
Location: Derby England
Posts: 609
You were spot on Greg!

I just happened to get a new motherboard today, so I did a full clean install of everything.

Having a clean .properties made it much easier to see what was going on. I have now installed it successfully and all works (even the DRM files).

Thanks for your help - and patients.
Reply With Quote
  #66  
Old 05-18-2006, 08:52 PM
mikesm mikesm is offline
Sage Icon
 
Join Date: Jul 2003
Posts: 1,293
Flachbar, did you try the new version, and did ir parse FLAC files and import them adequately?

Thanks,
Mike
Reply With Quote
  #67  
Old 05-19-2006, 05:04 AM
dflachbart dflachbart is offline
SageTVaholic
 
Join Date: Jan 2006
Location: Brookfield, CT
Posts: 2,743
Quote:
Originally Posted by mikesm
Flachbar, did you try the new version, and did ir parse FLAC files and import them adequately?

Thanks,
Mike
No, I tried it with the new version and this time I got some different java exceptions in the parser.

Well, it is not really that important to me (honestly, even if I would get it working I probably still wouldnt use it because of the crippled Music Library in Sage), so I didn't want to bother Greg to spend time on something which wont be used anyway. Now, if others are also interested in FLAC parsing, I could post the errors here for Greg to have a look at ...

Dirk
Reply With Quote
  #68  
Old 05-23-2006, 08:03 AM
ukmgranger's Avatar
ukmgranger ukmgranger is offline
Sage Expert
 
Join Date: Apr 2004
Location: Derby England
Posts: 609
Will this work with WMP vsn. 11?
Reply With Quote
  #69  
Old 05-23-2006, 10:26 AM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
If it doesn't, that would be a bug in WMP 11. COM components (like WMP) are required to maintain backward compatibility with existing apps.
__________________
-- Greg
Reply With Quote
  #70  
Old 06-22-2006, 07:16 AM
coppit coppit is offline
Sage Advanced User
 
Join Date: Mar 2003
Posts: 176
Windows Media Player popping up

I assume that Windows Media Player is not supposed to appear over SageTV when I play a CD, right? Did I miss some installation step to prevent this? Or do I need a different version of WMP? If you need a window-less way to interact with WMP, here's a little app I wrote a while ago, in case it helps: http://www.coppit.org/code/runquiet10.zip
Reply With Quote
  #71  
Old 06-22-2006, 09:57 AM
Morgan111's Avatar
Morgan111 Morgan111 is offline
Sage Fanatic
 
Join Date: Nov 2003
Location: Oak Ridge, Tennessee
Posts: 762
Greg,

Do you know if the the code here has the potential to play windows streaming audio??? Shoutcast is great, but there is alot out there in wsa.

I hadn't looked too much at this plugin before but I am interested in the CD playing capability. I had imported it into my SageMC STV and thought about doing some screen changes but found that I was running into major problems because of my Java version (and I'm too scared to upgrade right now ).

Does this look for an inserted CD regardless of the screen you are on?
Reply With Quote
  #72  
Old 06-22-2006, 12:43 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by coppit
I assume that Windows Media Player is not supposed to appear over SageTV when I play a CD, right? Did I miss some installation step to prevent this? Or do I need a different version of WMP? If you need a window-less way to interact with WMP, here's a little app I wrote a while ago, in case it helps: http://www.coppit.org/code/runquiet10.zip
SageWMP does not create any WMP windows. It just instantiates the ActiveX object. If you're getting a WMP window, it may be because you have Windows configured to auto-launch WMP whenever you insert a disc. In My Computer, right-click your CD drive, choose Properties, click the AutoPlay tab, select Music CD from the dropdown, and choose "Take no action".
__________________
-- Greg
Reply With Quote
  #73  
Old 06-22-2006, 12:49 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by Morgan111
Do you know if the the code here has the potential to play windows streaming audio??? Shoutcast is great, but there is alot out there in wsa.
I haven't tried it, but by editing properties you should be able to enable SageWMP for any audio file type that WMP supports. Try adding wsa to your seeker/music_library_import_filename_extensions, SageWMP/parser/file_types, and media_player_plugin_class properties and see what happens.

Quote:
Does this look for an inserted CD regardless of the screen you are on?
No, only when you're at the Music CD screen.
__________________
-- Greg
Reply With Quote
  #74  
Old 06-22-2006, 02:38 PM
mkanet's Avatar
mkanet mkanet is offline
SageTVaholic
 
Join Date: Feb 2004
Posts: 3,359
Does this mean that the next version of SageTV will have the funnctionality of this plugin builtn?

Quote:
Originally Posted by Narflex
This is on the list to update in the core. We'll be adding an Album Artist role type so you can independently specify the Song Artist vs. the Album Artist. More info will be available when it's out. An FYI for any planning you're doing.
__________________
Upgraded to Comcast X1 + Netflix/Amazon Video streaming

***RIP SageTV***
Reply With Quote
  #75  
Old 06-22-2006, 02:46 PM
Morgan111's Avatar
Morgan111 Morgan111 is offline
Sage Fanatic
 
Join Date: Nov 2003
Location: Oak Ridge, Tennessee
Posts: 762
It would be nice if the core also added a hook that is triggered by insertion of a CD!
Reply With Quote
  #76  
Old 07-10-2006, 06:54 PM
wheelrandolph wheelrandolph is offline
Sage Advanced User
 
Join Date: Apr 2005
Location: Chandler, Arizona
Posts: 190
Question Can't get Media Player Plugin to work

Hi All,
I installed this TagParser WMP plugin and nothing shows under Music menu. I use Neilm's Dynamic Menu and have stvi's for a long time. I unzipped all the folders to my SageTv/SageTv folder except for the Jar files which went into Jar folder. Any ideas.
Thanks for any help.

Randy
__________________
Sage Server: PhenomII X2 550 AM3 3.1Gz, GA-MA770T-UD3P, 4GB G.Skill DDR3-1333, OCZ MXP 700w PSU, WD Caviar Blue(2): 320GB (system), 500GB(videos), HVR-2250, PVR-150, Harmony 880
Windows7 Ultimate

HD-200 extender, 37 in. lcd tv (HDMI)
Reply With Quote
  #77  
Old 07-10-2006, 07:38 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Did you reimport your music after installing the plugin? Are you running SageTV as a service? If so, check to make sure that both Sage.properties and SageClient.properties got modified appropriately, and that the service got restarted with the new properties.
__________________
-- Greg
Reply With Quote
  #78  
Old 07-10-2006, 07:47 PM
wheelrandolph wheelrandolph is offline
Sage Advanced User
 
Join Date: Apr 2005
Location: Chandler, Arizona
Posts: 190
Smile

Quote:
Originally Posted by GKusnick
Did you reimport your music after installing the plugin? Are you running SageTV as a service? If so, check to make sure that both Sage.properties and SageClient.properties got modified appropriately, and that the service got restarted with the new properties.
Hi Greg and thanks for the reply--I am running Service and I removed my import dir and re-added it.

I read your instructions again just now and realize I have Java 1.42 and you state 1.5 or higher. So, that is probably the problem, right?

I don't get the CD (?) menu in the Music menu.

I will install a Java update as soon as a current recording is finished.




Randy
__________________
Sage Server: PhenomII X2 550 AM3 3.1Gz, GA-MA770T-UD3P, 4GB G.Skill DDR3-1333, OCZ MXP 700w PSU, WD Caviar Blue(2): 320GB (system), 500GB(videos), HVR-2250, PVR-150, Harmony 880
Windows7 Ultimate

HD-200 extender, 37 in. lcd tv (HDMI)
Reply With Quote
  #79  
Old 07-10-2006, 08:30 PM
wheelrandolph wheelrandolph is offline
Sage Advanced User
 
Join Date: Apr 2005
Location: Chandler, Arizona
Posts: 190
Thumbs up Got It Working!!!

I guess the Java was the problem--updated Java to 1.5 and now I have the Music CD option in the Music menu.

Randy
__________________
Sage Server: PhenomII X2 550 AM3 3.1Gz, GA-MA770T-UD3P, 4GB G.Skill DDR3-1333, OCZ MXP 700w PSU, WD Caviar Blue(2): 320GB (system), 500GB(videos), HVR-2250, PVR-150, Harmony 880
Windows7 Ultimate

HD-200 extender, 37 in. lcd tv (HDMI)
Reply With Quote
  #80  
Old 08-01-2006, 09:39 PM
bcjenkins bcjenkins is offline
SageTVaholic
 
Join Date: Jan 2006
Posts: 3,764
Greg,

Given the recent stance on Java 1.5 with Sage, can anything be done to make it work with 1.4?

TIA

B
__________________
Running SageTV on unRAID via Docker
Tuning handled by HDHR3-6CC-3X2 using OpenDCT
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 01:22 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.