Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Video Encoding > MPEG-4 Encoder GUIs
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 25th January 2013, 14:40   #1  |  Link
alexmineiro
Registered User
 
Join Date: Dec 2012
Posts: 6
Alternative to FFCoder

Hi,

at the moment i encode my files with ffcoder, but the last update is from august 2011, therefore i'm looking for an alternative gui.

I use my avisynth template for almost every file

Code:
# Source	
	FFIndex("")
	video = FFVideoSource("", threads=1)
	audio = FFAudioSource("")
# Audio 
	left_ch = GetChannel(audio,1).Normalize.ResampleAudio(48000)
	right_ch = GetChannel(audio,2).Normalize.ResampleAudio(48000)
	audio = MergeChannels(left_ch, right_ch)
	AudioDub(video, audio)

# Denoiser
	#RemoveGrain(mode=2)
	
# Crop
	#Crop(0,0,-0,-0)
	
# Resize
	#Lanczos4Resize(1280,720)
i am using the following x264 encoding options

video
Code:
--crf 20 --threads 0 --profile high --rc-lookahead 50 --qpmin 0 --qpmax 51 --qpstep 4 --ipratio 1.4 --pbratio 1.3 --chroma-qp-offset 0 --deadzone-intra 11 --deadzone-inter 21 --trellis 2
--min-keyint 23 --keyint 250--scenecut 40 --ref 5 --no-interlaced --deblock 0:0 --me umh --merange 16 --subme 8 --bframes 3 --b-bias 0 --direct auto --b-adapt 1 --b-pyramid normal
--no-weightb  --open-gop --partitions all --weightp 2 --level 4.1 --aq-mode 1 --aq-strength 1.0 --psy-rd 1.0:0.15 --cqm flat
audio
Code:
neroaac bitrate 128 lc profile
So i need an alternative which can do:

- avisynth support
- advanced x264 options
- batch processing
- muxing to mp4 automatically

which gui is the best 4 me ?


alexmineiro
alexmineiro is offline   Reply With Quote
Old 25th January 2013, 14:41   #2  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,815
Have you tried ripbot264?

Quote:
left_ch = GetChannel(audio,1).Normalize.ResampleAudio(48000)
right_ch = GetChannel(audio,2).Normalize.ResampleAudio(48000)
Why do you normalize audio in separate channels?!

Last edited by Atak_Snajpera; 25th January 2013 at 14:44.
Atak_Snajpera is offline   Reply With Quote
Old 25th January 2013, 14:52   #3  |  Link
alexmineiro
Registered User
 
Join Date: Dec 2012
Posts: 6
hi, will try your toool later.

i normalizie in seperate channels because i read it here:

http://avisynth.org/mediawiki/Normalize
alexmineiro is offline   Reply With Quote
Old 25th January 2013, 15:18   #4  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,815
Bad idea! Besides there is a note

Quote:
If you want to normalize each channel separately, you must use GetChannel to split up the stereo source.
YOU SHOULD NOT NORMALIZE CHANNELS SEPARATELY! I hope you already know why...
Atak_Snajpera is offline   Reply With Quote
Old 25th January 2013, 15:26   #5  |  Link
alexmineiro
Registered User
 
Join Date: Dec 2012
Posts: 6
ok then i use this avisynth script and use it for a test encode with ripbot

Code:
# Source	
	FFIndex("")
	video = FFVideoSource("", threads=1)
	audio = FFAudioSource("").Normalize.ResampleAudio(48000)
	AudioDub(video, audio)

# Denoise
	#RemoveGrain(mode=2)
	
# Crop
	#Crop(0,0,-0,-0)
	
# Resize
	#Lanczos4Resize(1280,720)
that should be ok ?
alexmineiro is offline   Reply With Quote
Old 25th January 2013, 15:43   #6  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,815
Why not just import video file directly without script?
Atak_Snajpera is offline   Reply With Quote
Reply


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


All times are GMT +1. The time now is 09:42.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.