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 > (HD) DVD, Blu-ray & (S)VCD > (HD) DVD & Blu-ray authoring

Reply
 
Thread Tools Search this Thread Display Modes
Old 6th November 2013, 08:50   #61  |  Link
Cedvano
Registered User
 
Join Date: Jul 2009
Posts: 244
I confirm this error on Win 7 / 64Bits.
Cedvano is offline   Reply With Quote
Old 6th November 2013, 09:59   #62  |  Link
tymoxa
Registered User
 
Join Date: Oct 2006
Location: Kyiv, Ukraine
Posts: 117
Quote:
Originally Posted by frencher View Post
And CABAC ?
CABAC is ON by default.
tymoxa is offline   Reply With Quote
Old 6th November 2013, 10:36   #63  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Quote:
Originally Posted by Sharc View Post
My command:
Code:
FRIMDecode mvc -i CombinedMVC.h264 -o \\.\pipe\TMP.yuv | FRIMEncode.exe mvc -i \\.\pipe\TMP_L.yuv -i \\.\pipe\TMP_R.yuv -viewoutput -o output_L.h264 -o output_R.h264 -w 1920 -h 1080 -dstw 1280 -dsth 720 -f 23.976 -vbr 10000 20000 -u 4
pause
The errors I get:
Code:
ERROR: Cannot open input file \\.\pipe\TMP_L.yuv

ERROR: File reader initialization failed.

ERROR: Cannot start encoding process.
I am on Windows 7 /64 bit.
All files are in the same folder. Does it have to be a special folder? Root directory?
There are two issues:
1. failure above is related to timing. Encoding process is trying to read from named-pipe which Decoding process didn't open yet
2. beside of this, there is bug when reading end of pipe.

I'll check it and fix it.
videofan3d is offline   Reply With Quote
Old 6th November 2013, 15:00   #64  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by videofan3d View Post
There are two issues:
1. failure above is related to timing. Encoding process is trying to read from named-pipe which Decoding process didn't open yet
2. beside of this, there is bug when reading end of pipe.

I'll check it and fix it.
Thanks! Glad you traced the cause.
Sharc is offline   Reply With Quote
Old 7th November 2013, 10:01   #65  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by frencher View Post
Why dont use FRIMTranscode.exe with both output: output_L.h264 and output_R.h264
We can use FRIMtranscode.exe to produce a re-encoded CombinedMVC.h264:
Code:
FRIMTranscode.exe -i::mvc CombinedMVC.h264 -o::mvc TranscodedCombinedMVC.h264 -w 1920 -h 1080 -f 23.976 -l 4 -b 8000 -u 4
The transcoded .h264 can then be remuxed with the new tsMuxeR.

FRIMTranscode.exe so far seems not support -vbr or any of the other advanced options which are available with FRIMEncode.exe. However it avoids the huge *.yuv intermediate files and could be a workaround until the fix for named pipe becomes available.
Sharc is offline   Reply With Quote
Old 7th November 2013, 10:30   #66  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Quote:
Originally Posted by Sharc View Post
FRIMTranscode.exe so far seems not support -vbr or any of the other advanced options which are available with FRIMEncode.exe. However it avoids the huge *.yuv intermediate files and could be a workaround until the fix for named pipe becomes available.

Pipe-fix will be available soon, likely on Friday night, so you can test it over weekend.

FRIOM Transcoder modification (cbr, vbr, gop, ...) is on roadmap.
videofan3d is offline   Reply With Quote
Old 7th November 2013, 10:35   #67  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by videofan3d View Post
Pipe-fix will be available soon, likely on Friday night, so you can test it over weekend.

FRIOM Transcoder modification (cbr, vbr, gop, ...) is on roadmap.
Wow! Good News. Just take your time .... no hurry.
Sharc is offline   Reply With Quote
Old 7th November 2013, 11:16   #68  |  Link
colinhunt
Registered User
 
Join Date: Dec 2002
Posts: 1,022
Quote:
Originally Posted by videofan3d View Post
Pipe-fix will be available soon, likely on Friday night, so you can test it over weekend.

FRIOM Transcoder modification (cbr, vbr, gop, ...) is on roadmap.
Fantastic! Thank you very much for all your hard work.
colinhunt is offline   Reply With Quote
Old 7th November 2013, 19:23   #69  |  Link
HWK
Registered User
 
HWK's Avatar
 
Join Date: Feb 2009
Location: Toronto, Ontario, Canada
Posts: 1,059
videofan3d can you add support for frame serving through directshowmvcsource plugin, currently when I open avs file in encoder I get message can't determine number of frames. I tired SBS as well and same thing is happening. However If I open file in virtual dub it correctly display how many frames video has and frame rate as well.
__________________
If you fail to plan; you plan to fail, would you not agree? Think about it.
HWK is offline   Reply With Quote
Old 7th November 2013, 20:13   #70  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Quote:
Originally Posted by HWK View Post
videofan3d can you add support for frame serving through directshowmvcsource plugin, currently when I open avs file in encoder I get message can't determine number of frames. I tired SBS as well and same thing is happening. However If I open file in virtual dub it correctly display how many frames video has and frame rate as well.
I don't understand.
Please describe your needs what do you want to achieve.

Avisynth is mighty tool (and well proven), I use for interractions between all my videoapplications without difficulties. Whenever I had a problem - it was always caused by mistake in my avs-script .
videofan3d is offline   Reply With Quote
Old 7th November 2013, 20:38   #71  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Frim 1.11

Hi,

there is new version FRIM 1.11

FRIM Encoder 1.11
- fixed bug in handling named pipes (.yuv)

FRIM Decoder 1.11
- separate main and dependent views on input are supported

FRIMDecode mvc -i input_L.h264 -i input_R.h264 -o output.yuv
videofan3d is offline   Reply With Quote
Old 7th November 2013, 21:04   #72  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Yeah i test your update NOW !!!
It's possible to compile all *.exe to x64 for increase speed please.
Thank
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 7th November 2013 at 21:41.
frencher is offline   Reply With Quote
Old 7th November 2013, 21:11   #73  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Quote:
Originally Posted by frencher View Post
Yeah i test your update NOW
It's possible to compile all *.exe to x64 for increase speed please.
Unfortunately, MSVC x64-compiler is not free...
videofan3d is offline   Reply With Quote
Old 7th November 2013, 21:40   #74  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by videofan3d View Post
Unfortunately, MSVC x64-compiler is not free...
There seems to have the better with pipe
By FrimEncoder against crashes during encoding with avisynth or MVC track is not decoded to give a black image instead of the right view (MVC).
A sync problem or Memory buffer
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Old 7th November 2013, 21:43   #75  |  Link
videofan3d
Registered User
 
Join Date: Sep 2013
Location: Czech Republic
Posts: 321
Quote:
Originally Posted by frencher View Post
There seems to have the better with pipe
By FrimEncoder against crashes during encoding with avisynth or MVC track is not decoded to give a black image instead of the right view (MVC).
A sync problem or Memory buffer
How do you run it? Please provide me with details...
videofan3d is offline   Reply With Quote
Old 7th November 2013, 22:10   #76  |  Link
colinhunt
Registered User
 
Join Date: Dec 2002
Posts: 1,022
Quote:
Originally Posted by videofan3d View Post
Unfortunately, MSVC x64-compiler is not free...
How much does it cost? Perhaps we could pass a hat around...
colinhunt is offline   Reply With Quote
Old 7th November 2013, 22:11   #77  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Avisynth Script:
Code:
LoadPlugin ("F:\MVC Player\MVCtoAVI.exe\DirectShowMVCSource.dll")

# Start AVS for CombinedMVC

File   = "G:\Video.mts"
Left   = DirectShowMVCSource(File,decodeleft=TRUE)
Right  = DirectShowMVCSource(File)
Video  = StackHorizontal(Left,Right) (3840x1080 @ 23.976 fps)

# End   AVS for CombinedMVC

Video  = Video.ConvertToYV12()
Return Video
Batch:
Code:
"F:\MVC Player\MVCtoAVI.exe\Tools\Frim MVC Decoder Encoder\FRIMEncode.exe" mvc -i "F:\MVC Player\MVCtoAVI.exe\Preview.avs" -avi -sbs 2 -viewoutput -o H:\L.h264 -o H:\R.h264 -b 60000 -u 4
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 7th November 2013 at 22:14.
frencher is offline   Reply With Quote
Old 7th November 2013, 22:13   #78  |  Link
colinhunt
Registered User
 
Join Date: Dec 2002
Posts: 1,022
Quote:
Originally Posted by videofan3d View Post
FRIM Decoder 1.11
- separate main and dependent views on input are supported
FRIMDecode mvc -i input_L.h264 -i input_R.h264 -o output.yuv
Does this mean I can feed it demuxed h264 files directly from a 3DBD?
colinhunt is offline   Reply With Quote
Old 7th November 2013, 22:17   #79  |  Link
HWK
Registered User
 
HWK's Avatar
 
Join Date: Feb 2009
Location: Toronto, Ontario, Canada
Posts: 1,059
Quote:
Originally Posted by frencher View Post
Avisynth Script:
Code:
LoadPlugin ("F:\MVC Player\MVCtoAVI.exe\DirectShowMVCSource.dll")

# Start AVS for CombinedMVC

File   = "G:\Video.mts"
Left   = DirectShowMVCSource(File,decodeleft=TRUE)
Right  = DirectShowMVCSource(File)
Video  = StackHorizontal(Left,Right) (3840x1080 @ 23.976 fps)

# End   AVS for CombinedMVC

Video  = Video.ConvertToYV12()
Return Video
Batch:
Code:
"F:\MVC Player\MVCtoAVI.exe\Tools\Frim MVC Decoder Encoder\FRIMEncode.exe" mvc -i "F:\MVC Player\MVCtoAVI.exe\Preview.avs" -avi -sbs 2 -viewoutput -o H:\L.h264 -o H:\R.h264 -b 60000 -u 4
Does it work for you? I tired with Directshowmvcplugin but no go for me and then I decied to send whole package to author for testing. Except magic path is stereoplayer.exe instead mvc toavi.exe
__________________
If you fail to plan; you plan to fail, would you not agree? Think about it.
HWK is offline   Reply With Quote
Old 7th November 2013, 22:17   #80  |  Link
HWK
Registered User
 
HWK's Avatar
 
Join Date: Feb 2009
Location: Toronto, Ontario, Canada
Posts: 1,059
Quote:
Originally Posted by colinhunt View Post
Does this mean I can feed it demuxed h264 files directly from a 3DBD?
I would think so, give it a try and let us know how it goes for you.
__________________
If you fail to plan; you plan to fail, would you not agree? Think about it.
HWK is offline   Reply With Quote
Reply

Tags
encoders, mvc

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 11:59.


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