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) v
« Previous 1 2 3 4 5 6 … 125 Next »
Automated Cutting and Transcoding Guide Using Mencoder

 
  • 0 Vote(s) - 0 Average
Automated Cutting and Transcoding Guide Using Mencoder
erik
Offline

Posting Freak

Posts: 1,138
Threads: 123
Joined: Apr 2005
#601
2008-04-08, 04:54 PM
Questor Wrote:Erik,
- regarding your recent post and how the program identifies the borders of active video,
does this calculation take into account the presence (or absence) of the logo?
I ask because I was transcoding an IFC channel video which was displayed in letterbox format, and maybe 1/4 to 1/6 of the logo was actually over the video and the rest was over the black bar widescreen area. So if the logo could effectively be ignored comskip would show widescreen dimentions.

Comskip ignores the logo area in determining the active video area
P4 3GHz 1GB, 250GB, nVidia dualTV, GBPVR 1.3.11, XP
Support Comskip, visit the forum and donate at http://www.comskip.org/
BMaster
Offline

Junior Member

Posts: 20
Threads: 4
Joined: Mar 2008
#602
2008-04-08, 05:30 PM
The wiki states that this script can be used from within postprocessing.bat file. Any hints on how to implement this? I assume that just renaming it to postprocessing.bat is not enough?
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#603
2008-04-08, 06:42 PM
BMaster Wrote:The wiki states that this script can be used from within postprocessing.bat file. Any hints on how to implement this? I assume that just renaming it to postprocessing.bat is not enough?


Assuming the Quick Start paths are correct, you would just need to set:

Code:
SET guide_mode=no


Then rename the file to postprocessing.bat.

You can test this out by dropping a video file on it. The script should automatically process the file.
firehorse
Offline

Member

Posts: 60
Threads: 6
Joined: Apr 2008
#604
2008-04-14, 08:02 PM
Hi,

I'm using stattik_transcode_0.5.5b.bat

I've probably got some settings wrong.

Although I have a file there, it comes back saying nothing to transcode.

I've got one file in c:\videoT\Small Railway Journeys_20080414_11451200.dvr-ms

I've changed
SET ptl_ext_check=.avi .mp4 .mkv .dvr-ms

I think I've set the other variables as needed.

I've done a debug run which I've attached.

Thanks
Alan
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#605
2008-04-15, 12:33 AM
Hi Firehorse,

I haven't gone though the entire debug yet but I would suggest you make sure you have this set:

Code:
SET transcode_extension=dvr-ms

By default it's set to mpg but since you have dvr-ms files, it will be needed.

See if that helps.
firehorse
Offline

Member

Posts: 60
Threads: 6
Joined: Apr 2008
#606
2008-04-15, 07:28 AM
Hi Stattik,

-stattik- Wrote:Hi Firehorse,

I haven't gone though the entire debug yet but I would suggest you make sure you have this set:

Code:
SET transcode_extension=dvr-ms

By default it's set to mpg but since you have dvr-ms files, it will be needed.

See if that helps.

I've done that. It seems better but it still doesn't appear to be detecting the files.

I 'intend' to keep everything at the top level of c:\VideoT so I've set the following. I don't know if they are correct.

SET recordings_path=c:\VideoT

SET individual_transcode_directories=""
SET recursive_transcode_directory=c:\videoT

I've attached another debug run.

Thanks
Alan
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#607
2008-04-15, 04:31 PM
firehorse Wrote:Hi Stattik,



I've done that. It seems better but it still doesn't appear to be detecting the files.

I 'intend' to keep everything at the top level of c:\VideoT so I've set the following. I don't know if they are correct.

SET recordings_path=c:\VideoT

SET individual_transcode_directories=""
SET recursive_transcode_directory=c:\videoT

I've attached another debug run.

Thanks
Alan

Ok, I found the issue.

First set ptl_ext_check back to the original setting. This setting checks to see if a transcode is already done. (IE: If there already was a avi, mp4, or mkv file made) so you'll want to remove dvr-ms from that list or else nothing will transcode.

Code:
SET ptl_ext_check=.avi .mp4 .mkv

The part of the script that's dropping the dvr-ms file is the part where it looks for an associated EDL file. Most users run comskip on the file which creates an EDL file (by configuring comskip.ini). If you're not using comskip, you can set

Code:
SET target_extension=dvr-ms

The rest of your settings will be fine. One issue you'll run into in this situation is once the file is done processing, the script will run again, find the dvr-ms file again, and process it again, and again, etc. The solution to this is either to delete the original file after processing or have the script move it to a directory that doesn't get scanned. Obviously, I'd make a backup of the video file until you're happy with the output.


Hope this helps.
firehorse
Offline

Member

Posts: 60
Threads: 6
Joined: Apr 2008
#608
2008-04-15, 05:33 PM
Hi,
-stattik- Wrote:Ok, I found the issue.

First set ptl_ext_check back to the original setting. This setting checks to see if a transcode is already done. (IE: If there already was a avi, mp4, or mkv file made) so you'll want to remove dvr-ms from that list or else nothing will transcode.

Code:
SET ptl_ext_check=.avi .mp4 .mkv

The part of the script that's dropping the dvr-ms file is the part where it looks for an associated EDL file. Most users run comskip on the file which creates an EDL file (by configuring comskip.ini). If you're not using comskip, you can set

Code:
SET target_extension=dvr-ms

The rest of your settings will be fine. One issue you'll run into in this situation is once the file is done processing, the script will run again, find the dvr-ms file again, and process it again, and again, etc. The solution to this is either to delete the original file after processing or have the script move it to a directory that doesn't get scanned. Obviously, I'd make a backup of the video file until you're happy with the output.


Hope this helps.
It's getting further. Now comes up with mplayer.exe not being able to find pthreadgc2.dll ???

I thought I downloaded the right version. I'm going back to check

Thanks
Alan
firehorse
Offline

Member

Posts: 60
Threads: 6
Joined: Apr 2008
#609
2008-04-15, 06:01 PM
Hi,

I tried downloading the latest version
MPlayer-mingw32-1.0rc2.zip
from here
http://www.mplayerhq.hu/homepage/design7/dload.html

When I click on that, everything seems ok.

I copied that to the amd-64 directory, and then copied amd-64 back over it for the processor specific version.

When I click mplayer, still the same problem.

I'm going to just try it with the standard mplayer because I can't figure out why the amd-64 version doesn't work.

Alan
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#610
2008-04-15, 06:26 PM
firehorse Wrote:Hi,

I tried downloading the latest version
MPlayer-mingw32-1.0rc2.zip
from here
http://www.mplayerhq.hu/homepage/design7/dload.html

When I click on that, everything seems ok.

I copied that to the amd-64 directory, and then copied amd-64 back over it for the processor specific version.

When I click mplayer, still the same problem.

I'm going to just try it with the standard mplayer because I can't figure out why the amd-64 version doesn't work.

Alan

There's a few builds of mplayer/mencoder that require pthreadGC2.dll

There's a few places you can get it. Here is one:

ftp://sources.redhat.com/pub/pthreads-wi...eadGC2.dll

Drop it in the mplayer dir.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (89): « Previous 1 … 59 60 61 62 63 … 89 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Yet another guide enhancer :0) carpeVideo 18 10,398 2010-04-07, 03:39 PM
Last Post: carpeVideo
  Guide Questions native 6 4,283 2010-02-10, 01:23 PM
Last Post: native
  Mencoder with multiple TS audio streams lanmat 2 4,626 2009-11-09, 12:15 PM
Last Post: lanmat
  mencoder error messages fvfv 3 2,869 2009-10-19, 08:07 PM
Last Post: -stattik-
  TV guide table colour Pob 3 2,506 2009-09-21, 10:55 PM
Last Post: Snooze
  Searching Guide Contents skycyclepilot 1 2,034 2009-08-23, 03:30 PM
Last Post: McBainUK
  Search for Movies in TV Guide spdrac1 1 2,042 2009-05-23, 03:37 PM
Last Post: JavaWiz
  MPEG2 transcoding to Xvid/AAC -which plug-in/tool are best fit? blizard 6 5,144 2009-03-01, 05:43 PM
Last Post: Deusxmachina
  Warning: Mencoder and large MPEG2 files can fail jam_zhou 1 1,706 2008-07-26, 01:39 AM
Last Post: sgilani
  Comskip, Comclean, Rename Recording, and Transcoding heath11 18 10,771 2008-03-27, 11:45 PM
Last Post: _Dude_

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

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

Linear Mode
Threaded Mode