SageTV Community  

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

Notices

SageMC Custom Interface This forum is for discussing the user-created SageMC custom interface for SageTV.

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #21  
Old 10-22-2007, 07:47 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
That explains it. Thanks for the quick response.
  #22  
Old 10-23-2007, 04:18 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
OK, now the auto compress seems to be a bit flaky. It seems to only pick up and schedule for compressions during prime-time. I can't find anywhere that I scheduled a "blackout" time. Any suggestions?
  #23  
Old 10-23-2007, 04:44 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
Do you mean dirmon2 only picks them up during prime time or Sage only creates the autoCompress files during prime time?
  #24  
Old 10-23-2007, 04:46 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
Nothing gets created in the qdvd folder except during prime time. The autoCompress files seem to be created fine.
  #25  
Old 10-23-2007, 05:26 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
That's very strange and its not happening on my system. I'll take a look at the code to see if I can figure out why it might be happening.
  #26  
Old 10-23-2007, 06:28 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
Actually, it looks like it started them last night because I was in updating all my series settings. Tonight, none of them are being picked up. Now it just looks like the autocompress setting is being ignored.
  #27  
Old 10-23-2007, 07:16 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
I'll admit the times it runs seems a little random, but i've never noticed it miss a show before so that's an improvment from last time
  #28  
Old 10-23-2007, 07:28 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
So any suggestions for troubleshooting it?
  #29  
Old 10-23-2007, 07:37 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
Out of curiousity, are you using SageTV as a service?
  #30  
Old 10-23-2007, 07:39 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
On my server I am. My main client is actually the one doing the transcoding because it has a great deal more power. On my client I am not, but I never close Sage. Should I change it to a service?
  #31  
Old 10-23-2007, 10:33 PM
GollyJer's Avatar
GollyJer GollyJer is offline
Sage Aficionado
 
Join Date: Nov 2006
Posts: 318
Quote:
Originally Posted by evilpenguin View Post
1) Yeah, I know passing everything through videoredo is the way to go but i'm torn by the fact that its not free so I hesitate to support it. I'm really hoping to find a free way to duplicate their quick stream fix.
This would be so helpful! A free way would be great but the ability to use VideoRedo would be a quick temp. fix for those that have it. I'd really like to automatically run all my recording through quickstream fix. I seem to have random timeline issues and this would take that headache away.
__________________
Currently using SageTV Media Center Server on Windows 7, SageTV Client as an HTPC on Windows 7, and an HD Theater HD200. The server controls 3 Motorola DCH-3200 cable boxes and 3 Hauppauge HD-PVRs (all Rev F1) with HD audio and changes channels via firewire WITH NO LOCKUPS. It's awesome.
4 Steps to Perfect Stutter Free Playback for SageTV
Quick Guide: How to Bitstream Audio in Windows 7
  #32  
Old 10-24-2007, 08:35 AM
nyplayer nyplayer is offline
SageTVaholic
 
Join Date: Sep 2005
Posts: 4,997
Quote:
Originally Posted by GollyJer View Post
This would be so helpful! A free way would be great but the ability to use VideoRedo would be a quick temp. fix for those that have it. I'd really like to automatically run all my recording through quickstream fix. I seem to have random timeline issues and this would take that headache away.
What I do is run QuickFix batch on all my files prior to running ShowAnalyzers or Comskip. I simply then set EP compression to wait for EDL

Sample of batchfile below. Will create a file QFixed that you can use as a trigger to comskip etc...

Code:
IF EXIST "%~d1%~p1%~n1.encoding" goto end
set touchpath=\\janedserver\SageEncode\mplayer\

set videoredo_path=c:\program files\videoredoPlus\

set priority=low

set delOriginal=yes
if NOT exist %videoredo_path%vp.vbs goto :end

rem "set delOriginal above to yes or no.... yes will delete original mpg and replace with encoded file."
rem "if set to no will Qfix file to tmpEncode directory but will not delete original...."

set extension=mpg
rem ........Do Not Touch Below................................................
if Not exist "%~f1" exit
Title QFixing %1
if Not exist "%touchpath%touch.exe" goto errtouch
md %~d1%~p1tmpEncode
del "%~d1%~p1tmpEncode\%~n1.tmp"
dir "%~f1">>"%~d1%~p1%~n1%.encoding"
START /B /W /MIN /%priority% cscript.exe //nologo "%videoredo_path%vp.vbs" "%~f1" "%~d1%~p1tmpEncode\%~n1.tmp" /t1 /d /q
if errorlevel = 1 goto errtrans
if errorlevel = 0 dir "%~f1">>"%~d1%~p1%~n1.QFixed"
"%touchpath%touch.exe" -r "%~f1" "%~d1%~p1tmpEncode\%~n1.tmp"
if errorlevel = 1 goto :errtouch
if /I "%delOriginal%" EQU "yes" if exist "%~d1%~p1%~n1.QFixed" del "%~f1"
if /I "%delOriginal%" EQU "yes" if exist "%~d1%~p1%~n1.QFixed" if exist "%~f1" echo "File In Use Not Replaced">>"%~d1%~p1%~n1.inuse%extension%"
if /I "%delOriginal%" EQU "yes" if exist "%~d1%~p1%~n1.QFixed" if not exist "%~f1" move "%~d1%~p1tmpEncode\%~n1.tmp" "%~d1%~p1%~n1.%extension%"
del "%~d1%~p1%~n1%.encoding"
:end
exit
:errtrans
echo "Error Videoredo Syntax error see below " >>"%~d1%~p1%~n1%.error"
exit
:errtouch
echo "Error Touch.exe not found in %touchpath%" >>"%~d1%~p1%~n1%.error"
exit
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct.

Last edited by nyplayer; 10-24-2007 at 08:58 AM.
  #33  
Old 10-24-2007, 04:48 PM
Alfiegerner Alfiegerner is offline
Sage Aficionado
 
Join Date: Oct 2005
Location: Auckland, NZ
Posts: 383
Can you help me setup up a default Handbrake profile? I've got myself confused getting the switches right

I'd like my default handbrake to be good quality 2-pass, xvid, avi using MP3. Not sure what bit rate to use but the target size i'd like is somewhere around 700 meg for 1.5 hours. I'd also always like the output file to go to a particular directory and not replace the original.

Out of interest what are the default settings for ffmpeg handbrake and mencoder if you don't use the advanced options?

Thanks very much in advance,
Alex

Last edited by Alfiegerner; 10-24-2007 at 04:53 PM.
  #34  
Old 10-24-2007, 05:15 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
Quote:
Originally Posted by Alfiegerner View Post
Can you help me setup up a default Handbrake profile? I've got myself confused getting the switches right

I'd like my default handbrake to be good quality 2-pass, xvid, avi using MP3. Not sure what bit rate to use but the target size i'd like is somewhere around 700 meg for 1.5 hours. I'd also always like the output file to go to a particular directory and not replace the original.

Out of interest what are the default settings for ffmpeg handbrake and mencoder if you don't use the advanced options?

Thanks very much in advance,
Alex
By default all ffmpeg, handbrake, and mencoder do an in-place deinterlaced 2-pass xvid @1500 kbs(333mb per half hour)/mp3 encode in an avi container.

I'm hard at work in putting in a meathod to create custom profiles like the one you want from inside the STV and it should be done this weekend. Until then you'll have to keep doing it by hand, sorry!

Last edited by evilpenguin; 10-24-2007 at 05:18 PM.
  #35  
Old 10-25-2007, 03:04 AM
Alfiegerner Alfiegerner is offline
Sage Aficionado
 
Join Date: Oct 2005
Location: Auckland, NZ
Posts: 383
Sounds good, thanks.
  #36  
Old 10-27-2007, 07:19 AM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
Many thanks to EP for the help troubleshooting my auto compressions. It turns out the problem was that I had started with an STV that already had the old version imported on at least some of my clients and server. It turns out I needed to start with a base STV and only import the new version (although it might work without this clean up), but more importantly I needed to make sure I upgraded to the latest version on all my Sage systems.

Now for the theoretical question. I'm trying to see if setting up the central work folder will speed up my compressions. My recordings are stored on a NAS box and I'm compressing on one of my clients. I'm thinking that speed might be increased if I use the central work folder on the machine that does the compressions and therefore I'm running at the full speed of the HD without creating extra network traffic.
  #37  
Old 10-27-2007, 07:45 AM
iumgrad iumgrad is offline
Sage User
 
Join Date: Oct 2007
Location: Michigan
Posts: 33
A little help please

penguin, I am having trouble with your plugin. hopefully you can help. I install everything as instructed. When I send a file to compression the expected menus appear. I have tried both custom choices and leaving everything default. After a couple of minutes an error file is created with a line indicating the video I am trying to compress does not exist. The compression is being done on my client machine, it has all of my recording drives map with same name designation (E drive server = mapped E drive on client). Is there something I didn't do correctly?
  #38  
Old 10-28-2007, 10:56 PM
grooves12 grooves12 is offline
Sage Aficionado
 
Join Date: Feb 2006
Posts: 303
Any updates on the DVD burning??

That is really the only feature I need, and unfortunately for me the last version does not work properly with my source material.
  #39  
Old 10-29-2007, 02:57 PM
evilpenguin's Avatar
evilpenguin evilpenguin is offline
SageTVaholic
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 3,696
How's and Why's

Quote:
Originally Posted by grooves12 View Post
Any updates on the DVD burning??

That is really the only feature I need, and unfortunately for me the last version does not work properly with my source material.
Prolly another week or so, I have some UNC path issues that I need to work out.

I added a "How's and Why's section to the instructions that should hopefully answer peoples questions if they have multiple PC's (toricred) or use videos on the network (iumgrad). Give it a read and let me know if it answers your questions adaquatly.
  #40  
Old 10-29-2007, 07:10 PM
toricred's Avatar
toricred toricred is offline
Sage Icon
 
Join Date: Jan 2006
Location: Northern New Mexico
Posts: 1,729
That helps a lot, but I still have a question on the central work folder.

When I set up the central work folder on the encoding machine, what path do I put in (i.e., a UNC or a local path) and does it have to writable to by all machines?
Closed Thread


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: Video Out Popup Menu for SageMC razrsharpe SageMC Custom Interface 7 04-03-2010 04:49 PM
STV Import: SageMC Video Tools v2.0.1a (2/02/07) evilpenguin SageMC Custom Interface 501 04-06-2009 05:13 PM
SageMC Video Tools 2.5 Alpha (need testers) evilpenguin SageMC Custom Interface 6 02-23-2007 07:59 PM
SageMC Video Tools vividweb SageMC Custom Interface 2 12-08-2006 06:34 PM


All times are GMT -6. The time now is 06:44 PM.


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