NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 848 849 850 851 852 … 1231 Next »
postprocessing.bat and manual recordings

 
  • 0 Vote(s) - 0 Average
postprocessing.bat and manual recordings
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#1
2006-03-05, 10:17 PM
I have finally realized the reason for some slightly nagging problems i have been having. Postprocessing.bat does not run after a manually scheduled recording.

Has anyone else noticed this behavior, or is it just a bug in my system?
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#2
2006-03-05, 10:24 PM
I can try on my system and see. I'd like to see how you use RecordingsManager to rename your shows. I can't seem to get it right.
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#3
2006-03-05, 10:28 PM (This post was last modified: 2006-03-05, 10:44 PM by turkey.)
what problem are you having with recordingsmanager?
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#4
2006-03-05, 10:39 PM
What I would like is to have shows named with series and episode title e.g. Stargate Atlantis - Inferno
and movie channels with just the title. I took the liberty to attach my parallelprocessing and recordingsmanager files. I also use Showanalyser and Videoredo. Any help is greatly appreciated.Big Grin
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#5
2006-03-05, 10:48 PM
bobrap, can you post your postprocessing.log and recordingsmanager.log files for me to look at?
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#6
2006-03-05, 11:01 PM
SureSmile
Parallelprocesing
Code:
@echo off
Rem The script is called with two parameters
Rem %1 is the fully qualified name of the recorded mpeg file.
Rem %2 is the channel number of the recording
echo Prostprocessing.bat invoked on %1 recorded from channel %2 >>postprocessing.log

rem this trick also makes it possible to have dedicated comskip.ini file for certain channels.
if "%2" == "520" goto rename
if "%2" == "521" goto rename
if "%2" == "522" goto rename
if "%2" == "523" goto rename
if "%2" == "527" goto rename
if "%2" == "528" goto rename
if "%2" == "529" goto rename
if "%2" == "530" goto rename
if "%2" == "531" goto rename
if "%2" == "532" goto rename
if "%2" == "533" goto rename
if "%2" == "537" goto rename
if "%2" == "538" goto rename
if "%2" == "539" goto rename
if "%2" == "540" goto rename
if "%2" == "542" goto rename
if "%2" == "544" goto rename
if "%2" == "545" goto rename
if "%2" == "547" goto rename

Rem use for all other channels
rem goto generic:

:everyday
REM If you use Showanalyzer, unREM the next line
"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
rem "C:\Program Files\devnz\gbpvr\comskip.exe" %1
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
RecordingsManager %1 > RecordingsManager.log
goto eof:

:rename
RecordingsManager %1 > RecordingsManager.log
rem move "%~dpn1_original.mpg" "%~dpn1.mpg"

:eof

Code:
<?xml version="1.0" encoding="utf-8" ?>
<RecordingsManager>
    <StayAliveMinutes>5</StayAliveMinutes>
    <RefreshIntervalSeconds>10</RefreshIntervalSeconds>
    <PollIntervalMinutes>1</PollIntervalMinutes>
    <ComSkip>
        <Enabled>False</Enabled>
        <ProcessInProgressRecordings>True</ProcessInProgressRecordings>
        <Monitor>False</Monitor>
        <MonitorIntervalMinutes>10</MonitorIntervalMinutes>
        <MaxRunning>1</MaxRunning>
        <RunComClean>false</RunComClean>
        <ExcludeChannels>
            <Channel>8</Channel>
            <Channel>12</Channel>
        </ExcludeChannels>
        <ExcludePrograms>
            <Program>Hardball with Chris Matthews</Program>
        </ExcludePrograms>
        <Folders>
            <Folder Pattern="*.mpg" Recursive="True">D:\GBPVR\test1</Folder>
        </Folders>
    </ComSkip>
    <MaxRecordings>
        <Enabled>False</Enabled>
        <Programs>
            <Program max="3">The Chris Matthews Show</Program>
            <Program max="3">Hardball With Chris Matthews</Program>
            <Program max="3">The Capital Gang</Program>
            <Program max="3">Fox News Watch</Program>
            <Program max="3">Fox News Sunday With Chris Wallace</Program>
            <Program max="3">Meet the Press</Program>
            <Program max="3">Special Report With Brit Hume</Program>
            <Program max="3">Scarborough Country</Program>
            <Program max="3">The Beltway Boys</Program>
            <Program max="3">Designed to Sell</Program>
            <Program max="3">House Hunters</Program>
            <Program max="5">Dr. Phil</Program>
            <Program max="5">Oprah Winfrey</Program>
<!--
            <Program max="3">Thomas &amp; Friends</Program>
            <Program max="3">Bob the Builder</Program>
            <Program max="3">Clifford the Big Red Dog</Program>
            <Program max="3">Dora the Explorer</Program>
-->
        </Programs>
    </MaxRecordings>
    <RenameRecordings>
        <Enabled>True</Enabled>
        <Format><Title/><EpisodeName SkipIfNotFound="True" Format=" - {0}"/></Format>
        <NoEpisodeNameFormat><ProgramName/></NoEpisodeNameFormat>
    </RenameRecordings>
</RecordingsManager>
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#7
2006-03-05, 11:06 PM
i'm sorry, what I was looking for was two log files that should be produced from the parallelprocessing.bat file that you posted earlier. Postprocessing.log and RecordingsManager.log should be in your gbpvr folder, and look like text files. Let me know if you cant find them, that would indicate a different problem.
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#8
2006-03-05, 11:18 PM
Sorry, just thought it was something in the bat/xml files that might be amiss.
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#9
2006-03-05, 11:23 PM
ok, now tell me what happens when you record something. Does showanalyzer run? Does videoredo run? What is wrong with the filenames?
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#10
2006-03-05, 11:35 PM
Yes both run. I think I might have found my own mistake. The renamerecordings file I use is renamerecording.exe. So I changed the spelling in the xml file to <Reb=name Recording> When I changed it back to include the "s", it seems to be working fine. Make sense or am I all screwed up?Big Grin:o

<RenameRecordings>
<Enabled>True</Enabled>
<Format><Title/><EpisodeName SkipIfNotFound="True" Format=" - {0}"/></Format>
<NoEpisodeNameFormat><ProgramName/></NoEpisodeNameFormat>
</RenameRecordings>
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Live TV and recordings do not match greg in kansas 8 7,291 2013-02-22, 06:35 PM
Last Post: sub
  Can't view recordings on pc jerry430 8 6,903 2013-01-21, 07:27 PM
Last Post: jerry430
  Live TV not showing anything although recordings are OK. Pls advise. seymoria 8 4,924 2012-08-07, 05:07 PM
Last Post: ACTCMS
  CSI Miami Recordings Always In Spanish ga_mueller 6 4,761 2012-06-12, 12:41 AM
Last Post: mikeh49
  Recordings missing after switching hard drive tegat 8 5,160 2011-12-21, 03:00 AM
Last Post: tegat
  Recordings and live TV fail with TS mux dvasco 4 2,801 2011-06-22, 05:47 PM
Last Post: dvasco
  Stream errors in recordings with GBPVR seymoria 11 4,761 2011-06-19, 06:44 PM
Last Post: seymoria
  Lost all my recordings pduncan67 2 2,064 2011-02-27, 03:12 PM
Last Post: pduncan67
  Zero byte recordings chuck_2330 0 1,470 2011-02-09, 01:25 PM
Last Post: chuck_2330
  Black screen when playing back recordings gonzo90017 1 1,717 2011-01-19, 06:12 PM
Last Post: gonzo90017

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

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

Linear Mode
Threaded Mode