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 > Programming and Hacking > Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 25th October 2011, 13:00   #21  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
rc4 source/binaries have been released. First download on the net! I'll also look into x264 support.
jmac698 is offline   Reply With Quote
Old 25th October 2011, 14:59   #22  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
chris_k or the_weirdo,
I couldn't get ffmbc to include any extra dll's, I made a new directory
C:\MinGW\msys\1.0\local\lib
and put libmp3lame.dll and libmp3lame.a in there.
When I tried --enable-libmp3lame --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib
it said libmp3lame not found.
I looked in the configure file and there is a standard naming scheme, lib???.a. So I don't know what's wrong.
jmac698 is offline   Reply With Quote
Old 25th October 2011, 16:55   #23  |  Link
the_weirdo
Yes, I'm weird.
 
the_weirdo's Avatar
 
Join Date: May 2010
Location: Southeast Asia
Posts: 271
Quote:
Originally Posted by jmac698 View Post
chris_k or the_weirdo,
I couldn't get ffmbc to include any extra dll's, I made a new directory
C:\MinGW\msys\1.0\local\lib
and put libmp3lame.dll and libmp3lame.a in there.
When I tried --enable-libmp3lame --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib
it said libmp3lame not found.
I looked in the configure file and there is a standard naming scheme, lib???.a. So I don't know what's wrong.
You need lame header, I think. Copy lame.h from lame's include folder to C:\MinGW\msys\1.0\local\include and try again.
the_weirdo is offline   Reply With Quote
Old 25th October 2011, 17:21   #24  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
Strange, I had already tried that. Still not working. Also what are the equivalent files for x264?
jmac698 is offline   Reply With Quote
Old 25th October 2011, 17:48   #25  |  Link
the_weirdo
Yes, I'm weird.
 
the_weirdo's Avatar
 
Join Date: May 2010
Location: Southeast Asia
Posts: 271
Quote:
Originally Posted by jmac698 View Post
Strange, I had already tried that. Still not working. Also what are the equivalent files for x264?
I just checked and look like you need to put lame.h in C:\MinGW\msys\1.0\local\include\lame not just C:\MinGW\msys\1.0\local\include. For x264, you need to include x264.h and x264_config.h. However, you must compile libx264 to get x264_config.h

Compile libx264 is pretty straight, though:
cd x264
./configure --disable-cli --enable-static --enable-strip --disable-swscale --disable-gpac --prefix=/usr/local

Replace --enable-static by --enable-shared if you want a shared lib.
the_weirdo is offline   Reply With Quote
Old 25th October 2011, 17:59   #26  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
awesome, that worked
I compiled x264 and lame as in the first post; just using configure/make
anyone know a file hoster in a non-software patent country?

edit
could you read over the new guide, at the end?

Last edited by jmac698; 25th October 2011 at 18:47.
jmac698 is offline   Reply With Quote
Old 2nd November 2011, 01:21   #27  |  Link
kolak
Registered User
 
Join Date: Nov 2004
Location: Poland
Posts: 2,843
jma698 you may want to re-compile rc4 as code has changed after you compiled it.
kolak is offline   Reply With Quote
Old 15th January 2012, 06:54   #28  |  Link
Chris K
Registered User
 
Join Date: Mar 2007
Posts: 16
Hi Jmac698,

My setup, based on your guide still worked fine for the new FFmbc 0.7-rc5. Among other improvements, it now supports ProRES interlaced.

Perhaps nice to update the Windows binaries if you can find the time for it.

Greetings,
Chris
Chris K is offline   Reply With Quote
Old 15th January 2012, 19:16   #29  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
Ok done
jmac698 is offline   Reply With Quote
Old 15th January 2012, 22:51   #30  |  Link
Chris K
Registered User
 
Join Date: Mar 2007
Posts: 16
Thanks!

Nice there's a shared and static build in the zip. I tried the static one and it does fine.

For those, interested in ProRES. This is what MediaInfo says about it...
Code:
Video
ID                               : 1
Format                           : ProRes
Format profile                   : High
Codec ID                         : apch
Duration                         : 5s 880ms
Bit rate mode                    : Variable
Bit rate                         : 61.4 Mbps
Width                            : 720 pixels
Height                           : 576 pixels
Display aspect ratio             : 5:4
Frame rate mode                  : Constant
Frame rate                       : 25.000 fps
Standard                         : PAL
Color space                      : YUV
Chroma subsampling               : 4:2:2
Scan type                        : Interlaced
Scan order                       : Top Field First
Bits/(Pixel*Frame)               : 5.919
Stream size                      : 43.0 MiB (98%)
Language                         : English
Encoded date                     : UTC 2012-01-15 21:26:11
Tagged date                      : UTC 2012-01-15 21:26:11
Color primaries                  : SMPTE RP145, SMPTE 170M, SMPTE 240M, SMPTE 274M, SMPTE 293M
Transfer characteristics         : BT.709-2, SMPTE 170M, SMPTE 274M, SMPTE 293M, SMPTE 296M
Matrix coefficients              : BT.470-4 System B, BT.470-4 System G, BT.601-4, SMPTE 170M, SMPTE 293M
There seems to be a new upload with the missing version number.

http://groups.google.com/group/ffmbc...53339b9ccd8024

Chris
Chris K is offline   Reply With Quote
Old 14th March 2012, 22:04   #31  |  Link
ApPojken
Registered User
 
Join Date: Jan 2006
Location: United Kingdom
Posts: 57
Thanks for this guide.

A quick question, how do I make libx264 and ffmbc compile targeting Windows 64 bit? I assume that the default is 32 bit?

On the wish list is for someone to write a guide for libass support. I've spent nearly two long days trying to get it working. May not have given up just yet though. I would really like to be able to use it.

Last edited by ApPojken; 15th March 2012 at 12:38.
ApPojken is offline   Reply With Quote
Old 4th October 2013, 14:02   #32  |  Link
18fps
Registered User
 
Join Date: Oct 2008
Posts: 55
Thank you for your detailed instructions! At first I tried to use the last version of MinGW and got a lot of errors: no exe was compiled. Then I installed the version in this guide and tried to compile the last ffmbc source, with success.
18fps is offline   Reply With Quote
Old 30th September 2014, 09:58   #33  |  Link
filler56789
SuperVirus
 
filler56789's Avatar
 
Join Date: Jun 2012
Location: Antarctic Japan
Posts: 1,351
ffmbc 0.7.1 is 4 months old already, but

no Windows binaries available thus far

https://drive.google.com/folderview?...Xc&usp=sharing
filler56789 is offline   Reply With Quote
Old 1st October 2014, 03:14   #34  |  Link
Reel.Deel
Registered User
 
Join Date: Mar 2012
Location: Texas
Posts: 1,664
Quote:
Originally Posted by filler56789 View Post
ffmbc 0.7.1 is 4 months old already, but

no Windows binaries available thus far

https://drive.google.com/folderview?...Xc&usp=sharing
I have not seen any 'official' binaries in a while. Nonetheless there are binaries floating around. Take a look here (download links are near the end): https://groups.google.com/forum/#!to...ss/se0U1vfpicw
Do they work as intended? Well that's a different story...
Reel.Deel is offline   Reply With Quote
Old 1st October 2014, 03:41   #35  |  Link
raffriff42
Retried Guesser
 
raffriff42's Avatar
 
Join Date: Jun 2012
Posts: 1,373
FFmpeg supports DNxHD and ProRES now; there isn't a need for ffmbc so much these days, AFAICT.
raffriff42 is offline   Reply With Quote
Old 28th December 2014, 02:14   #36  |  Link
filler56789
SuperVirus
 
filler56789's Avatar
 
Join Date: Jun 2012
Location: Antarctic Japan
Posts: 1,351
FWIW: current ffmbc is 0.7.2

http://forum.videohelp.com/threads/3...2-(Win32-build)

Quote:
Originally Posted by raffriff42 View Post
FFmpeg supports DNxHD and ProRES now; there isn't a need for ffmbc so much these days, AFAICT.
AFAIR, at least some multiplexers (AVI, MPG, TS) of ffmbc were "more correct" (or less broken) than the original versions from ffmpeg or libav. Examples:

http://forum.videohelp.com/threads/3...ll-image-video

http://forum.videohelp.com/threads/3...muxing-problem

Last edited by filler56789; 28th December 2014 at 02:46. Reason: add links
filler56789 is offline   Reply With Quote
Old 23rd February 2015, 11:06   #37  |  Link
jmac698
Registered User
 
Join Date: Jan 2006
Posts: 1,867
My sendspace links are dead, but ffmbc rc8, both 32bit and 64bit, are available at

http://www.mediafire.com/?8xynxe10rxb88
jmac698 is offline   Reply With Quote
Old 20th August 2016, 21:28   #38  |  Link
filler56789
SuperVirus
 
filler56789's Avatar
 
Join Date: Jun 2012
Location: Antarctic Japan
Posts: 1,351
Update: FFmbc version N-32083-g8b91f67 is out:

http://forum.videohelp.com/threads/3...32083-g8b91f67

Last edited by filler56789; 20th August 2016 at 21:29. Reason: remove emoticon :-)
filler56789 is offline   Reply With Quote
Old 7th November 2017, 16:38   #39  |  Link
Midzuki
Unavailable
 
Midzuki's Avatar
 
Join Date: Mar 2009
Location: offline
Posts: 1,480
UPDATE: FFmbc.exe version N-32103-g431e408 is out.

https://forum.videohelp.com/threads/...32103-g431e408
Midzuki is offline   Reply With Quote
Old 9th November 2017, 15:56   #40  |  Link
Midzuki
Unavailable
 
Midzuki's Avatar
 
Join Date: Mar 2009
Location: offline
Posts: 1,480
^ Now there is an x64 build as well. Third post in the Videohelp topic indicated above.
Midzuki is offline   Reply With Quote
Reply

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 10:53.


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