-
Is this project still alive?
I mean, i see yazoo is involved into scummvm development also. Does this mean we will see a scummvm plugin which can play aitd games? It too would be great.
2008-12-21 21:32:23 UTC in Free in the Dark
-
I see while mplex is multiplexing streams, it's reporting wrong audio bitrates. This error is still in the cvs.
You should fix:
* mplex/ac3strm_in.cpp
* mplex/dtsstrm_in.cpp
* mplex/mpastrm_in.cpp
in lines
mjpeg_info ("Bit rate : %8u bytes/sec (%3u\
kbit/sec)", bit_rate*128, bit_rate);
The number 128 should be 125 since kbps means 1000 bps, not 1024 bps.
Elio.
2008-10-17 13:59:27 UTC in The MJPEG/Linux square
-
Hi, I've built mplex from mjpegtools-1.8.0 on my winxp system. Actually i use it for multiplexing together video and audio streams in order to create video dvd so i use the option '-f 8'. I can check for correctness of the output file muxing the streams again with the same mplex from mjpegtools-1.8.0 shipped with my ubuntu (i've got a dual boot system) and then comparing the resulting files...
2008-08-19 21:32:44 UTC in The MJPEG/Linux square
-
Hi, i just found your project and took a look at the docs, it seems interesting and i want to give it a try!
I was wondering if is it possible with your script to re-encode audio also (i.e. reducing channels) so to achieve a lower video compression. Of course, when you rebuild a dvd with a single audio track you can get just a poor saving (448kbps to 192 kbps) but since I like to have more than...
2008-06-03 11:14:52 UTC in XDVDShrink
-
Hi, i wish to build your player under windows with msys+mingw. I've got many of the packages needed by cmus (i've built pdcurses instead of ncurses) and i see i can setup configure with either CONFIG_WAVEOUT or latest libao (CONFIG_AO) which supports audio output under windows, so i feel close to my target.
But your configure script is a bit complex to me.
It checks twice for faad.h, why?...
2008-05-15 12:01:18 UTC in C* Music Player
-
Fixed.
I wrote a patch which lets faac-1.26 build flawlessly under msys+mingw too (and the patch was tested under ubuntu too, it doesn't hurt!). This patch fixes some conflicting/missing declarations and can be used as-is but checking again the new declaration for the macros VAR_TO_FPOS and FPOS_TO_VAR (look at the diff file) may be a good idea; i mean, the code works but the preprocessor...
2008-04-03 16:07:22 UTC in Freeware Advanced Audio Coder
-
Here is a patch that allows latest faad2 to be successfully built under windows with msys+mingw:
diff -ur faad-2.6.1/common/mp4ff/mp4ff_int_types.h faad-2.6.1-1/common/mp4ff/mp4ff_int_types.h
--- faad2/common/mp4ff/mp4ff_int_types.h Tue Feb 1 13:15:56 2005
+++ faad2-2.6.1-1/common/mp4ff/mp4ff_int_types.h Sun Mar 2 16:17:10 2008
@@ -3,6 +3,10 @@
#if defined (_WIN32)
+#ifdef...
2008-03-02 16:49:15 UTC in Freeware Advanced Audio Coder
-
Building faac (./configure --disable-shared --with-mp4v2) i got this conflicting declaration error when compiling /common/mp4v2/3gp.cpp:
/bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../include -I/usr/local/include -Wall -O4 -MT 3gp.lo -MD -MP -MF .deps/3gp.Tpo -c -o 3gp.lo 3gp.cpp
g++ -DHAVE_CONFIG_H -I. -I../.. -I../../include -I/usr/local/include...
2008-03-02 15:09:43 UTC in Freeware Advanced Audio Coder
-
Fixed.
This bug was caused by wrong open mode for output file under Windows.
/frontend/frontend.c at line 566:
file = fopen(filename, "w");
should became:
file = fopen(filename, "wb");
to fix this. The behaviour is the same under *nix systems while in Windows writing of corrupted data due to the adding of a 0x0D char before each 0x0A is avoided.
BTW, i fixed a small typo in written...
2008-03-02 11:16:00 UTC in TwoLAME
-
Just tested twolame-0.3.12 under linux (xubuntu 7.04) and all went ok.
So, if the executable works well under linux and the windows binary is good when compiled with ICL, maybe is this the case of a particular int type managed the wrong way by mingw?.
2008-02-28 00:07:45 UTC in TwoLAME