Quantcast MencodeME: a Newbie Oriented GUI - 0.23 is Out! - Page 15 - digitalFAQ.com Forums [Archives]
  #281  
04-26-2004, 06:34 PM
maurus maurus is offline
Free Member
 
Join Date: Oct 2003
Location: Madrid
Posts: 387
Thanks: 0
Thanked 0 Times in 0 Posts
1) ¿Filter combo option in MEncoder-Me 0.22 is DVD if the souce es a DVD? ¿What means Filter combo?

2) MPlayer.exe and MEncoder.exe shoud be in the same directory than MEncoderme.exe?

I have this log when I try a encode from a .VOB:

Code:
Mencoder.exe -include temp.conf -lavcopts vbitrate=697:vpass=1 "D:\FINDING_NEMO\VIDEO_TS\VTS_01_1.VOB" -o "D:\FINDING_NEMO\VIDEO_TS\VTS_01_1.mpv" MEncoder dev-CVS-040423-00:19-3.3.1 (C) 2000-2004 MPlayer Team
Can't open '/cygdrive/c/Documents and Settings/Mauricio/.mplayer/codecs.conf': No such file or directory
 
Can't open 'mplayer//codecs.conf': No such file or directory
 CPU: Advanced Micro Devices Athlon Thunderbird 878.8 MHz (Family: 6, Stepping: 2)
File not found: 'frameno.avi'
 Detected cache-line size is 64 bytes
Failed to open frameno.avi
 CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 0 SSE2: 0
: No such file or directory
 Compiled for x86 CPU with extensions: MMX MMX2 3DNow 3DNowEx SSE
 
 Reading /cygdrive/c/Documents and Settings/Mauricio/.mplayer/codecs.conf: Reading mplayer//codecs.conf: Using built-in default codecs.conf.
 Reading config file /cygdrive/c/Documents and Settings/Mauricio/.mplayer/mencoderReading config file temp.conf
 font: can't open file: /cygdrive/c/Documents and Settings/Mauricio/.mplayer/font/font.desc
      5 [main] Mencoder 1840 handle_exceptions: Exception: STATUS_ILLEGAL_INSTRUCTION
 font: can't open file: /usr/local/share/mplayer/font/font.desc
 success: format: 0  data: 0x0 - 0x43FDA800
 MPEG-PS file format detected.
  68082 [main] Mencoder 1840 open_stackdumpfile: Dumping stack trace to Mencoder.exe.stackdump
Can you help me?

Thanks.


-Maurus
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #282  
04-26-2004, 06:38 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by maurus
1) ¿Filter combo option in MEncoder-Me 0.22 is DVD if the souce es a DVD? ¿What means Filter combo?
The filter settings that vmesquita choose for that source. Like different scripts that we use, depending is source is AVI, DVD, Capture, etc.
Quote:

2) MPlayer.exe and MEncoder.exe shoud be in the same directory than MEncoderme.exe?
Yes.
Quote:

I have this log when I try a encode from a .VOB:

.......
68082 [main] Mencoder 1840 open_stackdumpfile: Dumping stack trace to Mencoder.exe.stackdump

Can you help me?

Thanks.
Try another compiled version of Mencoder.

-kwag
  #283  
04-26-2004, 07:02 PM
maurus maurus is offline
Free Member
 
Join Date: Oct 2003
Location: Madrid
Posts: 387
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks Kwag. I'm trying with MEncoder.exe (17/04/2004) of MEncoder-Me 0.2 previous version and now the encoding is started.

Also I can't use preview option with current version of MEncoder-Me 0.22.

Thanks for all.


-Maurus
  #284  
04-26-2004, 07:12 PM
vmesquita vmesquita is offline
Invalid Email / Banned / Spammer
 
Join Date: May 2003
Posts: 3,726
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by maurus
Also I can't use preview option with current version of MEncoder-Me 0.22.
You need a mplayer executable.
  #285  
04-26-2004, 07:43 PM
maurus maurus is offline
Free Member
 
Join Date: Oct 2003
Location: Madrid
Posts: 387
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by vmesquita
Quote:
Originally Posted by maurus
Also I can't use preview option with current version of MEncoder-Me 0.22.
You need a mplayer executable.
I have mplayer.exe (included in MEncoderme 0.22) in the same directory...

Another question:

When I use makeAvis.exe with MA script I see the next error:

Code:
GripCop. Could not save target frame size as variables.
MakeAvis Avisynth script, line 19

And this is my script:

Code:
## DLL Section ## 
# 
LoadPlugin("d:\Filters25\MPEG2Dec3dg.dll") 
LoadPlugin("d:\Filters25\GripFit_YV12.dll") 
#LoadPlugin("d:\Filters25\STMedianFilter.dll") 
LoadPlugin("d:\Filters25\asharp.dll") 
LoadPlugin("d:\Filters25\unfilter.dll") 
LoadPlugin("d:\Filters25\undot.dll") 
# 
#### 

## Main section and static filters ### 
# 
Mpeg2Source("D:\FINDING_NEMO\VIDEO_TS\Nemo.d2v") 
# 
undot() 
#Limiter() 
asharp(1, 4) 
GripCrop(352, 288, overscan=1, source_anamorphic=false) 
GripSize(resizer="BicubicResize") 
#STMedianFilter(3, 3, 1, 1 ) 
MergeChroma(blur(1.5))
MergeLuma(blur(0.1)) 
# 
# 

## Linear Motion Adaptive Filtering ## 
# 
# ( Portions from AviSynth's manual ) 
# This will apply variable temporalsoften 
# and variable blur. 
# Both filters are active at all times, and work inversely proportional to the 
# activity, measured from current frame to next frame. 

ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1)  ") 

# 
# 
# 

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

# 
# 
## Functions ### 

function fmin( int f1, int f2) { 
  return ( f1<f2 ) ? f1 : f2 
} 
  
# 
####
-Maurus
  #286  
04-27-2004, 06:46 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
Also I did see that GripFit in AVS's cant be handled by Makeavis (ffvfw.dll).

a) Try the ffdshow version of Makeavis (latest)

b) Use FitCD for resizing (Moviestacker download is stopped due that GPL discussion)
  #287  
04-27-2004, 07:06 AM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by incredible
b) Use FitCD for resizing (Moviestacker download is stopped due that GPL discussion)
As I know, actually Moviestacker can to be downloaded, requesting it for PM to Kwag.
  #288  
04-27-2004, 09:22 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Prodater64
Quote:
Originally Posted by incredible
b) Use FitCD for resizing (Moviestacker download is stopped due that GPL discussion)
As I know, actually Moviestacker can to be downloaded, requesting it for PM to Kwag.
No, MovieStacker is not available at this moment, until muaddib's final decision.
However, if you already have it, there's no reason why you can't use it.

-kwag
  #289  
04-27-2004, 09:42 PM
black prince black prince is offline
Free Member
 
Join Date: Jul 2002
Posts: 1,224
Thanks: 0
Thanked 0 Times in 0 Posts
@all,

Quote:
Mencode-me: a newbie oriented GUI - 0.22 is out!
These posts have gone way past the newbie and back to batch
experts. Maybe removing newbie would be clearer

-BP
  #290  
04-27-2004, 10:14 PM
vmesquita vmesquita is offline
Invalid Email / Banned / Spammer
 
Join Date: May 2003
Posts: 3,726
Thanks: 0
Thanked 0 Times in 0 Posts
But this is still the MencodeMe thread, and the GUI is useful for newbies at current stage. This is true for many members of the Portuguese Forum.
  #291  
04-28-2004, 02:46 AM
KYUSS KYUSS is offline
Free Member
 
Join Date: Dec 2002
Location: UK
Posts: 80
Thanks: 0
Thanked 0 Times in 0 Posts
sorry for being dumb but does this proggy encode audio as well?
  #292  
04-28-2004, 03:09 AM
maurus maurus is offline
Free Member
 
Join Date: Oct 2003
Location: Madrid
Posts: 387
Thanks: 0
Thanked 0 Times in 0 Posts
I can make a .mpv file with MEncoder-Me 0.22, but with Mencoder.exe include with MencoderMe 0.2, not with Mencoder.exe included in the last version.

I can't preview with none of the two versions.

I will try now with source makeAvis. I will obtain greater quality than with the internal filters of MEncoder?

Thanks.


-Maurus
  #293  
04-28-2004, 06:51 AM
ench0 ench0 is offline
Free Member
 
Join Date: Apr 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
I am into this KVCD madness for a few months now. I've started with tmpgenc (using about 5-6 programs for the process) and switched to DIKO 2 months ago (I was 2 tired after months of manual processing). Now I am trying this famous Mencoder.
I must say the result is the best yet! Never had a crush or any problem whatsoever. I just don't get why people are using avisynth scripts? As I understood scripting is already implemented using ffvfw builtin scripts?

P.S. I am just encoding 704x576 at 25-30 fps (whooosh)
  #294  
04-28-2004, 09:07 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by ench0
I am into this KVCD madness
We all are
Quote:
I just don't get why people are using avisynth scripts? As I understood scripting is already implemented using ffvfw builtin scripts?
There are still some advantages, when using AviSynth. For example, the Motion Adaptive part of our script, uses some unique functions that are only available in AviSynth. I'm sure a similar functionality will be implemented in ffmpeg/mencoder's code in the near future.
And if you're encoding at 25-30 fps on Windows, you should try it on FreeBSD, where I'm getting reports of ~+6FPS over Windows, on average

-kwag
  #295  
04-28-2004, 09:21 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
a) If going in mencoder using an AVI I thought the internal decompressing engine will be used instead of ffvfw.

b) If going in mencoder using VOB _ also the internal decompressing engine does its job

c) So if we use ffvfw.dll then cause of makeavis import into mencoder and if this happens we already can do our filtering in avisynth.

So if I understood him right, the approach should better in to make mencoders internal filters working .... so some peoples (noobs) do not need avisynth. (and thats saying me )
  #296  
04-28-2004, 10:21 AM
maurus maurus is offline
Free Member
 
Join Date: Oct 2003
Location: Madrid
Posts: 387
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by kwag
There are still some advantages, when using AviSynth. For example, the Motion Adaptive part of our script, uses some unique functions that are only available in AviSynth. I'm sure a similar functionality will be implemented in ffmpeg/mencoder's code in the near future.
What are the real advantages when using Motion Adaptive part in the script?


Thanks.


-Maurus
  #297  
04-28-2004, 10:33 AM
digitall.doc digitall.doc is offline
Free Member
 
Join Date: Jul 2003
Location: Valencia (España)
Posts: 741
Thanks: 0
Thanked 0 Times in 0 Posts
Maurus,
the MA part filters linearly, related to the stimated motion of the scene. At low motion, it applies mainly temporal filtering and light unfilter (spatial); at high motion it unfilters more (sometimes too much, but it can be adjust if it doen't fit oyur taste), because in high action you won't notice the blurring... and this is useful to obtain better compression. But anyone else can explain this better...
I hope we will be able to use it inside mencoder soon.
  #298  
04-28-2004, 10:45 AM
digitall.doc digitall.doc is offline
Free Member
 
Join Date: Jul 2003
Location: Valencia (España)
Posts: 741
Thanks: 0
Thanked 0 Times in 0 Posts
Hi all:
I have not posted for some time, but I've been following your advances (good job vmesquita ). Now I see lots of us around here , it's good to see you all. I'm veeery busy now, and things are now in a phase I just can help making tests (well, I just can help testing in any phase ). Now it's time for programmers and developers... and testers.
I dropped my tests with StarWars II without success to my taste. But I've learnt a lot with those tests.
Now I'm trying to encode an old capture (from my military service period, a looong time ago) that I encoded to mpeg2 with no filter and looks really bad, too high contrast, noisy,... and I'm feeding "this" to mencoder, trying to make a KSVCD...
My problem is in the filtering, as I'm using default DVD template from vmesquita, adapted in this way:
Code:
-vf yuvcsp,crop=688:560:18:2,scale=336:272:0:0:60,il=d,unsharp=l3x3:0.6,hqdn3d=3:6:8,
unsharp=l3x3:-0.7:c3x3:-1.5,noise=2uh,il=i,expand=352:288:-1:-1,hue=0.0:0.5
As you see I keep interlaced. And don't take too seriously the hue settings, I'm still tweaking them.
And this is my question: what filters/settings would you advise (mencoder ones)?, and how can adjust hue, saturation, maybe levels,...?. Do I use VirtualDub?, are VirtualDub settings to be loaded directly in mencoder?
Do we open a mencoder filtering thread?.
  #299  
04-28-2004, 11:32 PM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Hi:
@VMesquita:

Suggestions:
1 - It would be interesting that when opening source file dialog, it shows all supported files at once. Extensions selection drop-down box is not usefull, I think.
2 - It would be interesting also, a Save as default settings button.
3 - Could you put a Filtering Combo for mpeg1 and mpeg2 sources (like C(X)(S)VCD to K(S)VCD)

Bugs:
MencodeMe set GOP size (keyint) from settings in Target drop-down selection box. Keyint values always are or 15 (KDVD) or 24 (K(S)VCD), no matter what is selected in Framerate drop-down selection box. Let's remember that 15 is for PAL KDVD, 24 is for NTSC K(S)VCD. MencodeMe es missing values of 18 for NTSC KDVD and 25 for PAL K(S)VCD.
It would be better an exclusive drop-down selection box for this setting.
  #300  
04-29-2004, 02:27 AM
Zyphon Zyphon is offline
Free Member
 
Join Date: Oct 2003
Location: London, England (UK)
Posts: 1,035
Thanks: 0
Thanked 0 Times in 0 Posts
I suppose you could add a Advanced button so that the guys that arent newbies could tweak other various setting to make their conversions even better.

just a thought

For newbies like me this GUI is perfect and easy to use so thanks vmesquita.
__________________
Regards.

Michael.
Closed Thread




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: A newbie needs help with script eqlb02 Avisynth Scripting 6 01-29-2004 11:39 AM
Please help a newbie with not the right tool Rambytes Avisynth Scripting 4 08-02-2003 05:12 PM
Newbie! Was heisst AR und CQ? Repsac Video Konvertierung und Encodieren (Deutsch) 11 07-13-2003 06:57 AM
Newbie ptite kestion???? Evile-Death Conversion et d'Encodage de Vidéo (Français) 1 06-12-2003 01:07 AM
KVCD: What?...no newbie section? EightBall Off-topic Lounge 3 04-26-2002 03:02 PM

Thread Tools



 
All times are GMT -5. The time now is 06:57 AM  —  vBulletin © Jelsoft Enterprises Ltd