Quantcast TMPGEnc Plus v2.513.53.162 Released - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
06-12-2003, 06:37 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
new Version : 2.513. 2003/6/12

Fixed:
In the MPEG Setting dialogue under the GOP tab,
even if the "Force picture type setting" was not enabled
you could click the "setting" button.
Fixed:
Reading an animation using DirectShow,
could result in incorrect audio or a memory access violation error.

http://www.tmpgenc.net/

Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
06-15-2003, 04:51 AM
GetUp GetUp is offline
Free Member
 
Join Date: Dec 2002
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
new Version : 2.513. 2003/6/12

Fixed:
In the MPEG Setting dialogue under the GOP tab,
even if the "Force picture type setting" was not enabled
you could click the "setting" button.
Fixed:
Reading an animation using DirectShow,
could result in incorrect audio or a memory access violation error.

http://www.tmpgenc.net/

It seems to be NOT FREE for MPEG-1 anymore?
Baaad news....
Reply With Quote
  #3  
06-15-2003, 09:00 AM
DKruskie DKruskie is offline
Free Member
 
Join Date: May 2003
Location: Michigan
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Here try this link..
http://www.pegasys-inc.com
hope this helps


David
Reply With Quote
  #4  
06-19-2003, 07:03 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
ok just upgraded to this version and I'm getting a message sayin itm can't open avs file or its unsuprted, I checked enviromental settings and readavs.dll is in there I have even reinstalled avisynth 2.52 and still unsuported. Any Help??
Reply With Quote
  #5  
06-19-2003, 07:05 PM
willy_annand willy_annand is offline
Free Member
 
Join Date: Nov 2002
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by andybno1
ok just upgraded to this version and I'm getting a message sayin itm can't open avs file or its unsuprted, I checked enviromental settings and readavs.dll is in there I have even reinstalled avisynth 2.52 and still unsuported. Any Help??
did you try to increase the priority of the readavs.dll?
__________________
--
Willy
Reply With Quote
  #6  
06-20-2003, 01:32 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
yes it is set at 4 at the min, also it says that stmedian filter isn't a vlaid avisynth 2.5 filer either even though in the zip file it has one for 2.08 and 2.5, and yes I extracted the 2.5 one.
Reply With Quote
  #7  
06-20-2003, 11:58 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
ok got 2.513 to load avs and got all filters to work now it says:

Script Error: there is no function Named "chr"
Script line 40

Code:
##DLL Section ##
#
LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\GripFit_YV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\STMedianFilter.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\asharp.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\undot.dll")
#
####

##Defined Variables and Constants ##
#
MaxTreshold = 1.50
scd_trigger = 30 #Scene change trigger value.
nf =  0 #Current frame.
#
####

##Main section and static filters ###
#
Mpeg2Source("C:\DVD Movie\8 Mile.d2v")
#
undot()
Limiter()
asharp(2, 4)
GripCrop(352, 576)
GripSize(resizer="BicubicResize")
STMedianFilter(8, 32, 0, 0 )
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.2))
#
#

##Dynamic Linear Adaptive Filtering and Scene Change Detection ##
#
#( Portions from AviSynth's manual )- This will apply temporalsoften to
#very static scenes, and apply variable blur on moving scenes.
#We also assign a variable - and this is why a line break is inserted:

ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf > 2.5 ? asharp( -(fmin((nf/30), 1)), 0 ): \
TemporalSoften(2,7,7,3,2)")

#
#Scene change detection - If a scene change is detected, we
#blur heavily. This affects the scene before and the one after the
#scene change, thus providing a softer transition for the encoder instead
#of a sharp "spike".

conditionalfilter( last, asharp(-2,0), last, "nf", ">", "scd_trigger" )

#
#
#

GripBorders()
#LetterBox( Your_Values_Here )#Depends on situation. Use MovieStacker! 
Limiter()

#
#
##Functions ###

function fmin(float f1, float f2){
  return (f1<f2)? f1 : f2
}

#
####
Reply With Quote
  #8  
06-20-2003, 12:16 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
andybno1 my friend,

did you install the avisynth252 with ffvfw plugin?
http://sourceforge.net/projects/avisynth2

this will solve the problem with
Reply With Quote
  #9  
06-20-2003, 12:20 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
ah, well I best install it then
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
TMPGEnc: TMPGEnc Plus 2.524 (2.524.63.181) released glent2k3 Video Encoding and Conversion 25 01-04-2005 02:39 AM
TMPGEnc Plus DVD Author 1.5.15.49 released jorel Video Encoding and Conversion 0 10-17-2003 12:42 PM
New TMPGEnc Plus 2.521 (2.521.58.169) released DKruskie Video Encoding and Conversion 1 09-26-2003 03:16 PM
TMPGEnc Plus 2.510.49.157 released DaveL Video Encoding and Conversion 2 01-20-2003 05:33 AM
TMPGEnc 2.59 released ARAGORN Video Encoding and Conversion 2 12-11-2002 07:44 PM




 
All times are GMT -5. The time now is 04:11 PM  —  vBulletin © Jelsoft Enterprises Ltd