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
  #1  
Old 11-07-2009, 01:35 PM
tmiranda's Avatar
tmiranda tmiranda is offline
SageTVaholic
 
Join Date: Jul 2005
Location: Central Florida, USA
Posts: 5,851
Interest in iMovies for Default STV?

I have had a request to port iMovies for SageMC to the default menu. The port will take a fair amount of time so before jumping in I'd like to gauge how much interest there is.

Link to the SageMC version: http://forums.sagetv.com/forums/down...do=file&id=317

Anybody interested in this?
__________________

Sage Server: 8th gen Intel based system w/32GB RAM running Ubuntu Linux, HDHomeRun Prime with cable card for recording. Runs headless. Accessed via RD when necessary. Four HD-300 Extenders.
Reply With Quote
  #2  
Old 11-07-2009, 02:30 PM
PGPfan's Avatar
PGPfan PGPfan is offline
Sage Fanatic
 
Join Date: Apr 2003
Location: Oldtown, Idaho USA
Posts: 862
Yes, please! I'd be very interested!
__________________
Sage Server: Gigabyte 690AMD m-ATX, Athlon II X4 620 Propus, 3.0 GB ram, (1) VistaView dual analog PCI-e tuner, (2) Avermedia Purity 3D MCE 250's, (1) HD-Homerun, 1.5 TB of hard drives in a Windows Home Server drive pool, Western Digital 300GB 'scratch' disk outside the pool, Gigabit LAN
Sage Clients: MSI DIVA m-ATX, 5.1 channel 100w/channel amplifier card, 2 GB ram, , (1) Hauppauge MVP, (1) SageTV HD-100 Media Storage: unRAID 3.6TB server
Reply With Quote
  #3  
Old 11-07-2009, 06:36 PM
wubdich's Avatar
wubdich wubdich is offline
Sage Advanced User
 
Join Date: Sep 2009
Location: Germany
Posts: 235
Uuuuhhhh - would be great !
Reply With Quote
  #4  
Old 11-09-2009, 04:58 PM
Tiki's Avatar
Tiki Tiki is offline
Sage Icon
 
Join Date: Feb 2005
Location: Southwest Florida, USA
Posts: 2,009
Tom,

I ported the iMovies STVi to the default Sage back in March (Based on iMovies 1.0). I got permission to port it from jvl711, but I never posted it because there was still some work that I wanted to do on it. But, if you like I can post what I've got to get you a quicker start... I've been using it with the last couple of versions of Sage with no problems.

I added one feature that wasn't in the SageMC version - you can specify a filter when you call the menu using Dynamic Menus to either exclude a specific folder or include only the specified folder. If you specify a filter in the dynamic menu, it disables the filter menu in the iMovies screen so someone can't "un-filter" the screen. Here is the sample code for the dynamic menu XML file:

Quote:
<!-- -->
<internalScreenMenuItem screen="iMovies" title="iMovies1">
<evalExpression>AddStaticContext("PassedSelectedFolder", "E:\\My Hidden Videos\\")</evalExpression>
<evalExpression>AddStaticContext("PassedIncludeSelectedFolder", false)</evalExpression>
</internalScreenMenuItem>
<!-- -->
<internalScreenMenuItem screen="iMovies" title="iMovies2">
<evalExpression>AddStaticContext("PassedSelectedFolder", "E:\\My Hidden Videos\\")</evalExpression>
<evalExpression>AddStaticContext("PassedIncludeSelectedFolder", true)</evalExpression>
</internalScreenMenuItem>
<!-- -->
In this example, you will get two menu items: iMovies1 will hide all the videos from e:\My Hidden Videos, while iMovies2 will show only the videos in that folder. This mechanism would be useful if you wanted to separate adult movies from kids' movies, or home movies from DVD Rips.

The items that I planned to do but never got done were:
1) Add another variable that can be passed from the dynamic menus to choose whether or not the filter can be modified instead of just locking them down.
2) Add support for using the "Poster" type fan art if available rather than just the default thumbnails and folder.jpg images.
3) Add support for filtering out more than one directory.

Also, I think a newer version of iMovies for SageMC was released after I made my port, so I don't know if there are any useful features that I missed.

Anyway, if you are interested, let me know and I can email you the code or post it here.
__________________
Server: Ryzen 2400G with integrated graphics, ASRock X470 Taichi Motherboard, HDMI output to Vizio 1080p LCD, Win10-64Bit (Professional), 16GB RAM
Capture Devices (7 tuners): Colossus (x1), HDHR Prime (x2)
,USBUIRT (multi-zone)
Source:
Comcast/Xfinity X1 Cable
Primary Client: Server Other Clients: (1) HD200, (1) HD300
Retired Equipment: MediaMVP, PVR150 (x2), PVR150MCE,
HDHR, HVR-2250, HD-PVR

Last edited by Tiki; 11-09-2009 at 05:02 PM.
Reply With Quote
  #5  
Old 11-09-2009, 05:14 PM
tmiranda's Avatar
tmiranda tmiranda is offline
SageTVaholic
 
Join Date: Jul 2005
Location: Central Florida, USA
Posts: 5,851
Better yet, since you have a head start can you do it? I don't really have the "fire in the belly" for it right now.
__________________

Sage Server: 8th gen Intel based system w/32GB RAM running Ubuntu Linux, HDHomeRun Prime with cable card for recording. Runs headless. Accessed via RD when necessary. Four HD-300 Extenders.
Reply With Quote
  #6  
Old 11-14-2009, 11:14 AM
wubdich's Avatar
wubdich wubdich is offline
Sage Advanced User
 
Join Date: Sep 2009
Location: Germany
Posts: 235
Sorry for my delayed response (I was on a business tripp) - would be great if you could post your code here !
Reply With Quote
  #7  
Old 01-09-2010, 11:54 AM
fdnyfish fdnyfish is offline
Sage User
 
Join Date: Jun 2009
Posts: 7
Interested in the imovie default stv
Reply With Quote
  #8  
Old 01-10-2010, 11:11 PM
Tiki's Avatar
Tiki Tiki is offline
Sage Icon
 
Join Date: Feb 2005
Location: Southwest Florida, USA
Posts: 2,009
Sorry, I didn't see the earlier post that anyone was interested in what I had...

Anyway, I resurrected this project this weekend and am very close to having something that I consider "good enough" for release. Since I'm close on the re-write, I decided not to release my "old" code.

Here's what I've done so far:
1. Made sure the old import works with the latest Sage release.
2. Updated to use phoenix APIs to search for "Poster" and "Background" fan art (will display poster if avaialable, otherwise background, otherwise default Sage thumbnail, otherwise generic DVD icon). "Default Sage Thumbnail" is folder.jpg if found, otherwise auto-generated thumbnail from first few seconds of file.
3. Then I grabbed the latest version of iMovies for SageMC (latest is 1.2, my import was based on 1.0) and went through it to see what had changed. Unfortunately because of the differences between SageMC and the default STV, it is a fairly labor-intensive manual process to go through all the changes.
4. Then I started re-working the code to make things work properly with default STV.

Almost there -just have a couple more broken links to fix, and a little more testing to do. Hopefully, I can post something tomorrow.
__________________
Server: Ryzen 2400G with integrated graphics, ASRock X470 Taichi Motherboard, HDMI output to Vizio 1080p LCD, Win10-64Bit (Professional), 16GB RAM
Capture Devices (7 tuners): Colossus (x1), HDHR Prime (x2)
,USBUIRT (multi-zone)
Source:
Comcast/Xfinity X1 Cable
Primary Client: Server Other Clients: (1) HD200, (1) HD300
Retired Equipment: MediaMVP, PVR150 (x2), PVR150MCE,
HDHR, HVR-2250, HD-PVR
Reply With Quote
  #9  
Old 01-11-2010, 02:52 AM
fdnyfish fdnyfish is offline
Sage User
 
Join Date: Jun 2009
Posts: 7
Great
Reply With Quote
  #10  
Old 01-11-2010, 09:57 PM
PGPfan's Avatar
PGPfan PGPfan is offline
Sage Fanatic
 
Join Date: Apr 2003
Location: Oldtown, Idaho USA
Posts: 862
Quote:
Originally Posted by Tiki View Post
Almost there -just have a couple more broken links to fix, and a little more testing to do. Hopefully, I can post something tomorrow.
Awesome news, Tiki!

Can't wait to try it out. Thanks for putting in the work to get this up and runnin!

-PGPfan
__________________
Sage Server: Gigabyte 690AMD m-ATX, Athlon II X4 620 Propus, 3.0 GB ram, (1) VistaView dual analog PCI-e tuner, (2) Avermedia Purity 3D MCE 250's, (1) HD-Homerun, 1.5 TB of hard drives in a Windows Home Server drive pool, Western Digital 300GB 'scratch' disk outside the pool, Gigabit LAN
Sage Clients: MSI DIVA m-ATX, 5.1 channel 100w/channel amplifier card, 2 GB ram, , (1) Hauppauge MVP, (1) SageTV HD-100 Media Storage: unRAID 3.6TB server
Reply With Quote
  #11  
Old 01-11-2010, 10:20 PM
Tiki's Avatar
Tiki Tiki is offline
Sage Icon
 
Join Date: Feb 2005
Location: Southwest Florida, USA
Posts: 2,009
OK, it's up on the download page now. Here's a link to the support thread. There are links at the top of that thread for the download page and the notifications thread.

Give it a try and let me know how it goes. Post any future comments in that support thread.
__________________
Server: Ryzen 2400G with integrated graphics, ASRock X470 Taichi Motherboard, HDMI output to Vizio 1080p LCD, Win10-64Bit (Professional), 16GB RAM
Capture Devices (7 tuners): Colossus (x1), HDHR Prime (x2)
,USBUIRT (multi-zone)
Source:
Comcast/Xfinity X1 Cable
Primary Client: Server Other Clients: (1) HD200, (1) HD300
Retired Equipment: MediaMVP, PVR150 (x2), PVR150MCE,
HDHR, HVR-2250, HD-PVR
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
STV Import: Comskip Playback for Default STV (v1.5.4 30/August/2008 for SageTV 5/6) JREkiwi SageTV Customizations 600 11-23-2011 07:58 AM
STV Import: Auto Compress for version 6 Default STV (V1.4.5 1/October/2008) JREkiwi SageTV Customizations 325 10-15-2010 03:06 PM
STV Import: Fan Art for Default STV by TiKi (v2.2 Feb 22, 2009) Tiki SageTV Customizations 102 01-05-2010 05:16 PM
STV Import: iMovies for SageMC jvl711 SageMC Custom Interface 112 11-16-2009 08:04 AM
Any Interest for an STV with mini-guide and Digitally recorded icons jbuszkie SageTV Customizations 44 01-28-2006 02:41 PM


All times are GMT -6. The time now is 01:41 PM.


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