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 AVC / H.264

Reply
 
Thread Tools Search this Thread Display Modes
Old 1st May 2012, 23:39   #361  |  Link
Cedvano
Registered User
 
Join Date: Jul 2009
Posts: 244
It's my fault ! My h264 files isn't good.

I have an error :

Quote:
x264 [info]: profile High, level 4.1
An unintentional loss of pictures occurs! Exit/s, eta 0:00:34
A gap in frame number is found, try to fill it.
PicParset 1 references an invalid (uninitialized) Sequence Parameter Set with ID 1, expect the unexpected...
An unintentional loss of pictures occurs! Exit
A gap in frame number is found, try to fill it.
And stop here. I can't do anything. Have you got an idea ? Thanks

Last edited by Cedvano; 2nd May 2012 at 08:28.
Cedvano is offline   Reply With Quote
Old 2nd May 2012, 12:36   #362  |  Link
Cedvano
Registered User
 
Join Date: Jul 2009
Posts: 244
I continue with this error. I can play my video.

When I read on my 3DTV, I have a dancing image.

Here the command line :
Code:
x264 --level 4.1 --sar 1:1 --aud --frames 4000 --frame-packing 5 -o "c:\test\final.264" "c:\eac3to\avs.avs"
My AVS:
Code:
LoadPlugin("C:\eac3to\H264StereoSource.dll")
lv = DirectShowSource("C:\test\left.h264").crop(0,0,0,-8)
rv = H264StereoSource("decoder.cfg",577)
Interleave(lv, rv)
ConvertToYV12()
Where is the mistake ?
Cedvano is offline   Reply With Quote
Old 3rd May 2012, 06:58   #363  |  Link
kypec
User of free A/V tools
 
kypec's Avatar
 
Join Date: Jul 2006
Location: SK
Posts: 826
Quote:
Originally Posted by Cedvano View Post
I use Win7 64, x264 32bits and Avisynth 64bits.
Have you got a soluce ?
Yes, ditch AviSynth x64 in favor of 32-bit version. It's known to be utterly unstable.
kypec is offline   Reply With Quote
Old 3rd May 2012, 07:41   #364  |  Link
Cedvano
Registered User
 
Join Date: Jul 2009
Posts: 244
Quote:
Originally Posted by kypec View Post
Yes, ditch AviSynth x64 in favor of 32-bit version. It's known to be utterly unstable.
Ok, thanks. I do that.
But, I can't use H264StereoSource.dll ???

Edit:
All is good. I reinstall 32bit Avisynth.
I find the real avs options and can create a good framepacking. 60fps
On my LG, good quality.
Thanks for your help.

Last edited by Cedvano; 3rd May 2012 at 20:00.
Cedvano is offline   Reply With Quote
Old 11th August 2012, 03:52   #365  |  Link
eule2010
Registered User
 
Join Date: Mar 2011
Posts: 2
Free MVC Encoder in 2012 ?

Hi,

are there any planned developments for 2012 ?

GSoC 2011 extensions, Fraunhofer ?

Greets
eule2010

Last edited by eule2010; 11th August 2012 at 04:23.
eule2010 is offline   Reply With Quote
Old 11th August 2012, 03:59   #366  |  Link
SassBot
Guest
 
Posts: n/a
Except that GSoC page says that more than half the tasks were never started.
  Reply With Quote
Old 11th August 2012, 04:27   #367  |  Link
eule2010
Registered User
 
Join Date: Mar 2011
Posts: 2
Sorry, i am a little bit confused !
eule2010 is offline   Reply With Quote
Old 30th December 2012, 22:18   #368  |  Link
rica
Registered User
 
Join Date: Mar 2008
Posts: 2,021
Hi guys, Happy New Year to you all!

After months, I discovered "interleave" option always resulted with a shaking movie; not because of the encoder but aviscript itself.

Please check out these scripts on VirtualDubMod or GraphStudio and play the script frame by frame.

You will realize that right video (or left video) shifts through the bottom from the horizon line about 5-7 degrees, and this causes the shaking issue.

You may use one of these scripts to test:

Code:
lv=FFVideoSource("C:\folder\left.mkv")
rv=FFVideoSource("C:\folder\right.mkv")
interleave(lv,rv)
or,

Code:
lv=DirectShowSource("C:\folder\left.mkv", fps=25.00, audio=false)
rv=DirectShowSource("C:\folder\right.mkv", fps=25.00, audio=false)
interleave(lv,rv)
ConvertToYV12()
While there is no issue with this script:

Code:
lv=FFVideoSource("C:\folder\left.mkv")
rv=FFVideoSource("C:\folder\right.mkv")
StackHorizontal(lv,rv)
And here are the test files:

http://www.mediafire.com/?g1o0z67obrhp7qm

http://www.mediafire.com/?znydd51nosmny0n


Any feedback will be appreciated.

(Source: Test files have been extracted from Heidelberg 720.wmv from 3dtv.at.)



= = = = =

Last edited by rica; 30th December 2012 at 22:44.
rica is offline   Reply With Quote
Old 30th December 2012, 22:55   #369  |  Link
J_Darnley
Registered User
 
J_Darnley's Avatar
 
Join Date: May 2006
Posts: 957
Of course the video will shake if you look at the output of avisynth or x264 without a 3D player. The left and right views are interleaved. Are you encoding with --frame-packing 5? Are you using a 3D player?
__________________
x264 log explained || x264 deblocking how-to
preset -> tune -> user set options -> fast first pass -> profile -> level
Doom10 - Of course it's better, it's one more.
J_Darnley is offline   Reply With Quote
Old 30th December 2012, 23:02   #370  |  Link
rica
Registered User
 
Join Date: Mar 2008
Posts: 2,021
Quote:
Originally Posted by J_Darnley View Post
Of course the video will shake if you look at the output of avisynth or x264 without a 3D player. The left and right views are interleaved. Are you encoding with --frame-packing 5? Are you using a 3D player?
Yes to all your questions.

Even it is interleaved, both views must keep staying horizontally. (or parallelly.)

It is not related with a 3D viewer. (please check how stackhorizontal script keep staying on the same horizontal line. Shaking is normal for interleave while belly dancing is not.)

This is what I mean: (left view, here, is not on the horizon line.)

right view:



left view:



_ _ _ _ _ _ _

Last edited by rica; 1st January 2013 at 22:54.
rica is offline   Reply With Quote
Old 31st December 2012, 16:58   #371  |  Link
kieranrk
Registered User
 
Join Date: Jun 2009
Location: London, United Kingdom
Posts: 707
Quote:
Originally Posted by rica View Post
Even it is interleaved, both views must keep staying horizontally.
Erm...your eyes are at different horizontal positions so why should the pictures stay the same horizontally?
kieranrk is offline   Reply With Quote
Old 31st December 2012, 17:48   #372  |  Link
rica
Registered User
 
Join Date: Mar 2008
Posts: 2,021
No, I am not squint. You may compare both scripts to check out if the left video keeps staying in horizontal position with stack-horizontal script.

Last edited by rica; 31st December 2012 at 18:11.
rica is offline   Reply With Quote
Old 4th January 2013, 00:11   #373  |  Link
rica
Registered User
 
Join Date: Mar 2008
Posts: 2,021
Solved:

http://forum.doom9.org/showpost.php?...7&postcount=32


_ _ _ _ _
rica is offline   Reply With Quote
Old 21st July 2014, 13:36   #374  |  Link
tal.aloni
Registered User
 
Join Date: Sep 2008
Posts: 496
Quote:
Originally Posted by nm View Post
That file uses the same standard frame packing SEI (45) as x264 does. The only difference is that the stream has the SEI before every frame (with current_frame_is_frame0 flag set for each other frame) while x264 only inserts the message once for each GOP.
Solved #2,
After some reading and using the guidance on this thread, I was able to fix the issue with x264, see here for more info.
You also need a PS3 compatible container in order to play back 3D FS on the PlayStation 3, For more information see here.
tal.aloni is offline   Reply With Quote
Reply

Tags
stereo-3d, stereoscopic, useless

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 18:26.


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