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
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#271
2006-12-27, 06:28 PM
gb-pvruser Wrote:Does the skript update the database of gbpvr?

No it doesn't but if GBPVR can't find a mpg file it looks for the same file with an AVI extension.
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#272
2007-01-01, 06:24 AM
transcode 0.4 released

http://gbpvr.com/pmwiki/pmwiki.php/U...toTranscodeCut

The script was cleaned a bit more and it's been tweaked to try and automatically choose the best settings for more popular transcodes.

What's New:

0.4

* Video filter can be defined. Otherwise it's determined automatically.
* Fixed quant mode added. This will transcode a show at a certain quality level. A quant of 2-4 is recommended.
* Letterboxing (4/3 to 16/9) is automatically calcuated depending on input resolution.
* Output FPS is automatically determined. This can be overridden if desired.
* Test Mode has changed. Options are either no or the time (in seconds) for the test clip.
* Cutandcopy profile added(experimental). This will take mpeg and remove sections as per EDL file actions, leaving the audio/video quality untouched. This is also usefull for converting ts files to mpg.
* IVTC (inverse telecine) profile added. If you have content (mainly HiDef) that is skipping a great deal of frames on a consistant basis and output is jittery, try running under this profile.
* Twopass profile has been redone. There are two methods for twopass transcoding: size and bitrate. The twopass_15_min_size variable sets the target size of the transcode. By default, it's 350MB/hour. The bitrate option trys to create a file with a certain bitate.
* Channel patterns removed.

Feedback is appreciated.
DrDDT
Offline

Member

Posts: 84
Threads: 12
Joined: Mar 2006
#273
2007-01-20, 11:57 PM
Hi!

Transcode version 3 worked for me using drag and drop to drop a MPG recording on the .bat file, without any other configuration than entering the required program paths.

With version 4 the batchfile exits without doing anything. What can be wrong here?
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#274
2007-01-21, 04:41 AM
Hi DrDDT,

Well first I would verify there's no typo's in the program paths since that's the only thing that you modified. If it still doesn't work, set debug=yes and start the script from the command line. (Open a DOS prompt, drag the script in the window, add a space, and then drag the video into the window and hit enter)
Proceed through the script until it's exits out, copy the output, and post it here.
DrDDT
Offline

Member

Posts: 84
Threads: 12
Joined: Mar 2006
#275
2007-01-21, 04:52 PM
-stattik- Wrote:Hi DrDDT,

Well first I would verify there's no typo's in the program paths since that's the only thing that you modified. If it still doesn't work, set debug=yes and start the script from the command line. (Open a DOS prompt, drag the script in the window, add a space, and then drag the video into the window and hit enter)
Proceed through the script until it's exits out, copy the output, and post it here.

I'm getting an error with mencoder:

Code:
C:\Program Files\devnz\gbpvr>C:\Progra~1\mplayer\mencoder.exe "F:\downloads\Reco
rded TV\The bold and the beautiful nog 4 dagen\The bold and the beautiful nog 4
dagen_20061228_17551825_original.mpg" -edl "F:\downloads\Recorded TV\The bold an
d the beautiful nog 4 dagen\The bold and the beautiful nog 4 dagen_20061228_1755
1825_original.edl" -sws 9 -demuxer 35   -ovc xvid -xvidencopts fixed_quant=3:me_
quality=6:chroma_me:noqpel:chroma_opt:vhq=4:bvhq=1:trellis:hq_ac:quant_type=mpeg
:turbo -oac mp3lame -lameopts abr:br=128 -vf pp=ci,scale=512:384,hqdn3d=3:2:3:3
-fps null -ofps null  -o "F:\downloads\Recorded TV\The bold and the beautiful no
g 4 dagen\The bold and the beautiful nog 4 dagen_20061228_17551825_original.avi"

MEncoder 1.0rc1-3.4.2 (C) 2000-2006 MPlayer Team
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (Family: 15, Model: 35, Step
ping: 2)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 0 SSE2: 0
Compiled with runtime CPU detection.
The fps option must be a floating point number or a ratio (numerator[:/]denomina
tor): null

Exiting... (error parsing command line)
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#276
2007-01-21, 06:28 PM
According to the output the -fps and -ofps are set to null which is why mencoder is erroring out. My guess is that the script isn't getting the variables from mplayer. What is your mplayer_path= set to? if possible, post the output of the debug. I should easily find the issue then.

Thanks
DrDDT
Offline

Member

Posts: 84
Threads: 12
Joined: Mar 2006
#277
2007-01-21, 09:51 PM
-stattik- Wrote:According to the output the -fps and -ofps are set to null which is why mencoder is erroring out. My guess is that the script isn't getting the variables from mplayer. What is your mplayer_path= set to? if possible, post the output of the debug. I should easily find the issue then.

Thanks

See the attached debug output. Thanks!
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#278
2007-01-21, 11:08 PM
Thanks for the debug. I think I've found the problem. Here's an updated script.
The PAL test file I used had a FPS of 25.048 while yours was 25.000. If it works for you I'll upload the script to the wiki.

Thanks.
DrDDT
Offline

Member

Posts: 84
Threads: 12
Joined: Mar 2006
#279
2007-01-21, 11:22 PM
-stattik- Wrote:Thanks for the debug. I think I've found the problem. Here's an updated script.
The PAL test file I used had a FPS of 25.048 while yours was 25.000. If it works for you I'll upload the script to the wiki.

Thanks.

Almost there!

I'm getting the 25, but somehow I get 'fps 25':

Code:
C:\Program Files\devnz\gbpvr>C:\Progra~1\mplayer\mencoder.exe "F:\downloads\Reco
rded TV\The bold and the beautiful nog 4 dagen\The bold and the beautiful nog 4
dagen_20061228_17551825_original.mpg" -edl "F:\downloads\Recorded TV\The bold an
d the beautiful nog 4 dagen\The bold and the beautiful nog 4 dagen_20061228_1755
1825_original.edl" -sws 9 -demuxer 35   -ovc xvid -xvidencopts fixed_quant=3:me_
quality=6:chroma_me:noqpel:chroma_opt:vhq=4:bvhq=1:trellis:hq_ac:quant_type=mpeg
:turbo -oac mp3lame -lameopts abr:br=128 -vf pp=ci,scale=512:384,hqdn3d=3:2:3:3
-fps fps 25 -ofps fps 25  -o "F:\downloads\Recorded TV\The bold and the beautifu
l nog 4 dagen\The bold and the beautiful nog 4 dagen_20061228_17551825_original.
avi"
MEncoder 1.0rc1-3.4.2 (C) 2000-2006 MPlayer Team
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (Family: 15, Model: 35, Step
ping: 2)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 0 SSE2: 0
Compiled with runtime CPU detection.
The fps option must be a floating point number or a ratio (numerator[:/]denomina
tor): fps

Exiting... (error parsing command line)

C:\Program Files\devnz\gbpvr>
-stattik-
Offline

Posting Freak

Posts: 924
Threads: 26
Joined: Mar 2005
#280
2007-01-22, 01:32 AM
Ok, got it. This should fix it.

Thanks for working with me on this. Tell me how it works out.
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (89): « Previous 1 … 26 27 28 29 30 … 89 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Yet another guide enhancer :0) carpeVideo 18 10,392 2010-04-07, 03:39 PM
Last Post: carpeVideo
  Guide Questions native 6 4,282 2010-02-10, 01:23 PM
Last Post: native
  Mencoder with multiple TS audio streams lanmat 2 4,623 2009-11-09, 12:15 PM
Last Post: lanmat
  mencoder error messages fvfv 3 2,868 2009-10-19, 08:07 PM
Last Post: -stattik-
  TV guide table colour Pob 3 2,505 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,143 2009-03-01, 05:43 PM
Last Post: Deusxmachina
  Warning: Mencoder and large MPEG2 files can fail jam_zhou 1 1,704 2008-07-26, 01:39 AM
Last Post: sgilani
  Comskip, Comclean, Rename Recording, and Transcoding heath11 18 10,762 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