[Mjpeg-users] support for >8 bit video

2013-03-18 Thread Mark Heath
Does the mjpegtools support 9, 10 and 16 bit video? I noticed this post in ffmpeg repository http://git.videolan.org/?p=ffmpeg.git;a=commit;h=f7f6aaf988c224a10ad9ad67d7f7864746880c76 mentioning yuv4mpeg: support 9/10/16 bit pixel formats Is this also supported in mjpegtools? Mark

Re: [Mjpeg-users] Help reading Muxing TS

2011-11-15 Thread Mark Heath
On 15/11/2011, at 4:47 PM, sam wrote: > Hi Mark, > > Thank you for your reply, > > I have hardware encoder , which gives IP out , and it has 8 > channels , each channel gives me 2 ts. > > ffmpeg will encode again , then it is no use of using my encoder. ffmpeg ca

Re: [Mjpeg-users] Help reading Muxing TS

2011-11-14 Thread Mark Heath
streams for my IPTV system. Have you tried looking at the libav libraries? (what ffmpeg is based on) I know that they can produce transport streams. Not sure how easy it would be to write a stand alone app. Mark -- RSA(R)

Re: [Mjpeg-users] writing multi threaded code

2011-09-22 Thread Mark Heath
Just remember to pass in the entire input frame into your worker thread, not just a slice. But you only need to generate the output pixels for the slice. Does this make sense? Mark-- All of the data generated in

Re: [Mjpeg-users] writing multi threaded code

2011-09-22 Thread Mark Heath
r RGB, how would you read the data? In your above scenario how do you get the RGB data out of the quicktime file and into a yuv format for x264? (I only use y4m for x264) Mark -- All of the data generated in your IT in

Re: [Mjpeg-users] writing multi threaded code

2011-09-22 Thread Mark Heath
ould you be using a yuv444 format and just assigning rgb to the channels? I guess this would work as long as the filter didn't try to do any colour conversion. Mark -- All of the data generated in your IT infrastruct

Re: [Mjpeg-users] writing multi threaded code

2011-09-22 Thread Mark Heath
} } //mjpeg_debug("trace filterline out"); } Mark On 23/09/2011, at 10:00 AM, Steven Boswell II wrote: y4mdenoise does that sort of threading internally. It'll denoise the intensity plane and color plane separately, plus it has reader

[Mjpeg-users] writing multi threaded code

2011-09-21 Thread Mark Heath
, I'll see if I can generate my own skeleton. Thanks Mark -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudule

Re: [Mjpeg-users] yuvdenoise

2010-11-14 Thread Mark Heath
nt spatial filters using slices? Mark On 15/11/2010, at 9:59 AM, E Chalaron wrote: > Thanks Mark > >> No - The heaviest hitting process is causing the bottle neck. Look >> at >> optimising this process to better utilise your machine, >> multithreading >> ma

Re: [Mjpeg-users] yuvdenoise

2010-11-14 Thread Mark Heath
if this is the case. Mark On 14/11/2010, at 11:15 AM, E Chalaron wrote: > Hello all > Just a quick question : using mjpegtools through ffmpeg piping. > are they (or not) multi threaded ? > > ffmpeg -threads 2 -y -i - -f yuv4mpegpipe - | \ > yuvdenoise -t 2,8,8 -m 2,8,8 | > y

[Mjpeg-users] port of yadif?

2010-04-07 Thread Mark Heath
Has anyone ported yadif (yet another de interlacing filter) to mjpeg tools? it appears to be the "best" software deinterlace filter. Thanks Mark -- Download IntelĀ® Parallel Studio Eval Try the new software

Re: [Mjpeg-users] y4mstabilizer segmentation fault

2009-06-04 Thread Mark Heath
e buffer size fixes the bug, then it's probably not as urgent. I need a video project to take my mind off work. > > And @Mark Heath... I had seen your tools before, and I > will have another look at them in future. You have some > really interesting code there, and with a b

Re: [Mjpeg-users] y4mstabilizer segmentation fault

2009-06-03 Thread Mark Heath
ebuild to test a solution. > > I would try getting correct data into the program before any more > debugging ;) > > with ffmpeg something like this might stand a better chance: [snip] Could I plug my program which interfaces libav and the mjpeg libraries, libav2yuv? :-) h

Re: [Mjpeg-users] mpeg2enc's bitrate parameter does not work properly

2009-04-01 Thread Mark Heath
en written a tool based on the libavcodec libraries, which sole purpose is to produce a YUV stream. (http://silicontrip.net/~mark/lavtools/#libav2yuv) > > gst-launch-0.10 -v filesrc location=/var/tmp/The\ Drinky\ Crow\ Show > \ -\ Tunnel\ Girls.mpeg ! decodebin name=db ! queue ! video

Re: [Mjpeg-users] y4m -> DV ??

2009-02-26 Thread Mark Heath
On 27/02/2009, at 8:15 AM, Roman V. Shaposhnik wrote: > > ffmpeg doesn't care what's the input: >$ ./ffmpeg -i test.dv -f yuv4mpegpipe test.yuv For conversion to Y4M, I'm gonna plug my avcodec to y4m tool: http://silicontrip.net/~mark/lavtools/index.php#libav2yuv

Re: [Mjpeg-users] y4m -> DV ??

2009-02-26 Thread Mark Heath
need to specify the format. Mark -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovatio

Re: [Mjpeg-users] Good intermediate format to use

2009-01-23 Thread Mark Heath
found that it produces smaller files depending on the compression of the original file. Though it will produce very large files if the source is noisey and from a high bitrate source. I would highly recommend using ffmpeg in your mjpegtool chain, it can convert to a large number of file fo

Re: [Mjpeg-users] mpeg2enc: any hope of further development?

2008-12-21 Thread Mark Heath
Does mpeg2enc support encoding 422 video? Thanks Mark -- ___ Mjpeg-users mailing list Mjpeg-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Re: [Mjpeg-users] mplex "file mov03d.m2v unrecogniseable!"

2008-10-17 Thread Mark Heath
DEO_TS/VTS_01_0.IFO I then loaded DVD Player and pointed at the resulting VIDEO_TS directory and it played fine. I'm not sure if the remainder of the file causes issues with mpex or dvdauthor, but the segment you made available w

Re: [Mjpeg-users] mplex "file mov03d.m2v unrecogniseable!"

2008-10-16 Thread Mark Heath
Or you could use ffmpeg to demux the file: ffmpeg -i example.mpg -vcodec copy example.m2v The format looks OK, so you should not need to re-encode it. Mark - This SF.Net email is sponsored by the Moblin Your Move Developer&#x

Re: [Mjpeg-users] Y4mhist

2008-09-18 Thread Mark Heath
f anyone has any recommendations about making a package, I wouldn't mind hearing. There is a gcc build command in the comments: gcc -O3 yuvdiag.c -L/sw/lib -I/sw/include/mjpegtools -lmjpegutils -o yuvdiag just replace the location of your mjpeg include and libraries. Mark > > Cheers > E &

Re: [Mjpeg-users] Y4mhist

2008-09-16 Thread Mark Heath
I'm not sure about y4mhist, But it sounds like you are looking for something similar to my yuvdiag tool. renders a realtime histogram (among other things) suitable for displaying with a yuv player of some sort. http://silicontrip.net/~mark/lavtools/index.php#yuvdiag Let me know if th

Re: [Mjpeg-users] Building Cross platform binaries

2008-06-22 Thread Mark Heath
and line options... > If you don't use the CVS version of the mjpegtools the new MAC > aren'T detected correct. You need to update the cpuinfo script and I > think the cpuinfo.c file. You will find the changes in the CVS. I have however forgotten my exa

Re: [Mjpeg-users] Building Cross platform binaries

2008-06-16 Thread Mark Heath
On 12/06/2008, at 11:23 PM, Mark Heath wrote: > > As you can see here it has attempted to tune for pentium3 and gcc > spits it over command line options... > > I would like to have universal binaries as I do use a mixture of PPC > and Intel macs. > > I am guessing to

[Mjpeg-users] Building Cross platform binaries

2008-06-12 Thread Mark Heath
o have universal binaries as I do use a mixture of PPC and Intel macs. I am guessing to build universal binaries is going to require some serious hacking of the build scripts. Can anyone help? Mark - Check out the new S

Re: [Mjpeg-users] frame rate conversion

2008-05-26 Thread Mark Heath
On 25/05/2008, at 6:43 PM, Christian Ebert wrote: > * Mark Heath on Saturday, May 24, 2008 at 08:47:53 +1000 >> By the way I have my own blending framerate converter (yuvaifps) >> available on my lavtools site >> http://silicontrip.net/~mark/lavtools/index.php#yuvafps >

Re: [Mjpeg-users] frame rate conversion

2008-05-24 Thread Mark Heath
I have my own blending framerate converter (yuvaifps) available on my lavtools site http://silicontrip.net/~mark/lavtools/ index.php#yuvafps Mark - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(

Re: [Mjpeg-users] Zig-zag pattern on every frame...

2008-03-13 Thread Mark Heath
tten a channel splitter available on my yuvtools page http://silicontrip.net/~mark/lavtools/ called yuvdiag. It's a bit of a hack job, but it shows the U and V channels in the luma channel. You might find this useful to do noise diagnostics. It also has a rudimentary chroma and luma scopes,

Re: [Mjpeg-users] Zig-zag pattern on every frame...

2008-03-12 Thread Mark Heath
. Inside computer cases are horrible places to put any sort of analogue signal. I'm not sure if it's possible, try moving the card to another computer. I'm not sure if it's a software bug On 10/03/2008, at 2:39 AM, Andrea Giuliano wrote: By the way, Mark, can you expla

Re: [Mjpeg-users] Zig-zag pattern on every frame...

2008-03-08 Thread Mark Heath
the noise goes away? * Turn off all electrical appliances. * Try the capture source closer to the computer. Mark -- Check out my latest YUV tools at http://silicontrip.net/~mark/lavtools/ On 08/03/2008, at 8:34 AM, Andrea Giuliano wrote: > Okay, you and Burkhard suspect radio interference

Re: [Mjpeg-users] Old mpeg2enc vs current CVS

2008-02-29 Thread Mark Rages
o, I suspect it is "better" than > the one I made with the current version of mpeg2enc. > > Does anyone have a clue as to what module in mpeg2enc is broken an > causing this problem? > > > Stan > Is there a tool for CVS like "git bisect"? http://www

Re: [Mjpeg-users] workaround (PPC) for mpeg2enc's buggyness

2008-01-23 Thread Mark Heath
On 23/01/2008, at 5:16 AM, Florin Andrei wrote: > Mark Heath wrote: >> >> Anyway I've been using the mpeg2 encoder in ffmpeg and have been >> happy with the results. > > I asked recently on their mailing list if they solved the rate control > issues and they

Re: [Mjpeg-users] workaround (PPC) for mpeg2enc's buggyness

2008-01-17 Thread Mark Heath
some hacky code which uses libav to do decoding (really wanted it after WMV3 support was added) to yuv4mpeg check out: http://silicontrip.net/~mark/lavtools/ http://silicontrip.net/~mark/lavtools/libav2yuv.c Maybe someone could make it a little more compiler friendly. I think that it doesn&

Re: [Mjpeg-users] workaround (PPC) for mpeg2enc's buggyness

2008-01-16 Thread Mark Heath
I've been using the mpeg2 encoder in ffmpeg and have been happy with the results. Of course most of my source material is mpeg 4 part 2 so any encoding artefacts I see I blame on the source :-) ffmpeg can read yuv4mpeg streams from stdin, just incase you don't know the command l

Re: [Mjpeg-users] how can i figure out if ppmtoy4m has a option 420mpeg2

2007-12-05 Thread Mark Heath
&1 | wc -l Have a search for redirecting stderr for which shell you are using on how to redirect stderr. Mark On 06/12/2007, at 8:08 AM, Martin Gansser wrote: > hi, > > i tried to figure out, if ppmtoy4m have the option 420mpeg2, but this > fails with newer mjpegtools version

Re: [Mjpeg-users] yuvdeinterlace bug?

2007-09-13 Thread Mark Heath
if alpha is supported. > > And - would be awesome if ffmpeg had options to output YUV streams > with > any chroma subsampling. It seems hardwired to 4:2:0 at the moment. Check out my libav2yuv (apart from being annoying t

Re: [Mjpeg-users] yuvdeinterlace bug?

2007-09-13 Thread Mark Heath
On 14/09/2007, at 12:50 PM, David McNab wrote: > There's an alternative implementation of yuvdeinterlace, unfortunately > with the same name, at: > > http://silicontrip.net/~mark/lavtools/ :-) yeah that's my version. It was for non interlace aware temporal filter

[Mjpeg-users] yuvdeinterlace bug?

2007-09-13 Thread Mark Heath
vdeinterlace.cc:1033) 4_start + 340 (crt.c:272) 5start + 60 Let me know if I can help debug it. Mark - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://

Re: [Mjpeg-users] keyframe automation with yuv4mpegpipe-style tools

2007-08-29 Thread Mark Heath
n to have them read from stdin and write to stdout 0 yuvdenoise -m 8,12,12 25 yuvdeinterlace 275 yuvdenoise -m 8,12,12 This seems relatively straight forward, unless I've misunderstood what is being described here. Mark -

Re: [Mjpeg-users] "mpeg2enc is currently broken"

2007-07-23 Thread Mark Heath
-f yuv4mpegpipe -i - -vcodec mpeg2video -hq -b 6000 -maxrate 8000 -bufsize 224 myfile.mpg There are more options you may need, but this should get you started. Mark On 24/07/2007, at 12:49 AM, sean wrote: > ffmpeg seems the only alternative on linux. I'll go try to > find out h

Re: [Mjpeg-users] does mplex support MPEG2 transport stream?

2007-05-28 Thread Mark Heath
the -f option. I was even able to wrap a h264 elementary stream into a transport stream this way. Hope this helps. Mark On 27/05/2007, at 2:20 PM, Bernhard Praschinger wrote: > Hallo > > > Thierry Foucu wrote: >> I was wondering if mplex supports MPEG2 transport stream for

Re: [Mjpeg-users] mpeg2enc: status of low quality settings on ix86

2007-05-10 Thread Mark Heath
urred consistently throughout the encoded clip, say every GOP or every second GOP. This error does seem similar to the issue you described. I'm not sure how to debug such a result. Mark On 11/05/2007, at 9:34 AM, Jonathan Woithe wrote: > Hi all > > For a long time there have been known issu

[Mjpeg-users] Standards converter?

2007-05-08 Thread Mark Heath
laced or not. Would it make much of a difference than using a separate scaler and frame rate converter? By the way, which frame rate converter is considered the *best* at the moment? Mark - This SF.net email is sponsor

Re: [Mjpeg-users] Reasonable targets for Video8 sources...

2006-09-07 Thread Mark Heath
I purchased a D8 camera to do the capturing. It is able to read video 8 tapes and send it via firewire. I've been archiving the tapes on disk as DV files. I'll edit the files together one day and burn them onto DVD. Mark On 07/09/2006, at 9:38 PM, Andrea Giuliano wrote: > H

[Mjpeg-users] Re: No video while recording (new kernel)

2006-06-15 Thread Mark James
> From: Bernhard Fr?hmesser <[EMAIL PROTECTED]> > Subject: [Mjpeg-users] No video while recording (new kernel) > I have compiled a new kernel version and compiled support for v4l and > the zoran driver (dc10+) as module. I load the module with modprobe > zr36067. So far when i have a VHS attache

Re: [Mjpeg-users] How to take a shapshot from the dc30

2006-04-24 Thread Mark James
I have the Miro installed on my home server because I want to run a (low traffic) weather cam. Now I trying to find out howto to grab a jpg from /dev/video every 5 sec. The output jpg must be overwritten everytime, so I can show the actual weather online. Perhaps you can run xawtv and use xawt

Re: [Mjpeg-users] B ... [WAS: y4mscaler: Upsampling to widescreen]

2005-12-19 Thread Mark Heath
a 3x3 grid: 1 2 3 4 5 6 7 8 9 take pixels 1,2,3,7,8 and 9 as the inputs to the neural net, and pixel 5 as the output. Mark --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the n

Re: [Mjpeg-users] mpeg2enc 1.6.2: how to use -p for 24fps source?

2005-12-14 Thread Mark Heath
a fully compliant 29.97 interlaced stream, and is played as such by players that don't know about pull down, but these repeat field flags can be added, detected and removed easily. I don't quite understand. Mark --- Thi

Re: [Mjpeg-users] mpeg2enc 1.6.2: how to use -p for 24fps source?

2005-12-13 Thread Mark Heath
a complex procedure. Hopefully someone else can explain it better. So you are correct, adding the -p option makes your mpeg appear as if it is 29.97 interlaced even though it's 23.976 progressive. This is perfectly normal behaviour. Mark

Re: [Mjpeg-users] Too many frame drops

2005-11-20 Thread Mark Heath
must tell mplex to make a DVD compatible file, as it defaults to something more like VCD. Mark I see many warning messages, culminating in the following: ++ WARN: [mplex] Audio c0: buf= 4096 frame=000237 sector=0087 ++ WARN: [mplex] Video e0: buf= 19974 frame=000196 sector=12

Re: [Mjpeg-users] No a bug

2005-11-02 Thread Mark Heath
files. Some commands may not like that many arguments. curious... find cannot be relied upon to return files in alphabetical order, even if it does do so in most cases. Mark --- SF.Net email is sponsored by: Tame your development challenges w

Re: [Mjpeg-users] A bug ?

2005-11-02 Thread Mark Heath
that find is finding your files in? If you run find by itself, does it produce the list of files in the correct order? From memory, find uses inode order not alphabetical order. perhaps you could try: cat * | yuyvto4m ... Mark --- SF.Net ema

Re: [Mjpeg-users] fixing fields order in encoded mpeg2(vob)

2005-11-01 Thread Mark Heath
hich allows the modification of various mpeg flags. It's a hacked up version of bbvinfo. The source can be found here: http://www.inwards.com/inwards/?id=36 I hope this helps. Mark [taken from the command help] PULLDOWN - v0.99d, by Hard Code. [Based on sources by Brent Beyeler ([EMAIL P

Re: [Mjpeg-users] Converting back from DVD

2005-10-17 Thread Mark Heath
rop ofile.m2v (will write to stream.yuv, this name is hardcoded) Also have you had a quick look at the resulting yuv file, produced by pgmtoy4m? (test.mov) It should look something like this: YUV4MPEG2 W352 H288 F3:1001 It A1:1 FRAME [snip] Mark ---

Re: [Mjpeg-users] Converting back from DVD

2005-10-16 Thread Mark Heath
any decrypting. You can then use mpeg2dec to convert the mpeg files into yuv4mpeg streams. (or ffmpeg or mplayer...) Mark --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions,

Re: [Mjpeg-users] more - splitting an MJPEG to a series of JPEGs

2005-10-09 Thread Mark Heath
and type of jpeg (progressive, optimised etc) Typical usage might be: cjpeg -qual 95 -opt foo.ppm > foo.jpg It has heaps of other options for advanced jpeg users, check out the man page. Mark --- This SF.Net email is sponsored by: Po

Re: [Mjpeg-users] Fwd:ms-ima-adpcm import module?

2005-10-06 Thread Mark Heath
can handle this format you can get it to write to a wave file like this: mplayer -vc dummy -vo null -ao pcm file.avi and you will end up with a wave (audiodump.wav) file that you can encode into another format. Mark --- This SF.Ne

Re: [Mjpeg-users] yuvdenoise -S and -b

2005-10-03 Thread Mark Heath
frame rate that the file determines. eg -ao null -benchmark -noframedrop I hope this is what you were after. Mark --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more.

Re: [Mjpeg-users] how to encode an MPEG from an AVI?

2005-07-27 Thread Mark Heath
formats, mpeg and yuvpipe included. Mark --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get

[Mjpeg-users] Scene detection

2005-05-31 Thread Mark Rages
eg2dec. I never finished it into a standalone project. It worked quite well, better than using the full decoded frame, and was very fast, about 10 times faster than real-time on modest hardware. There is some literature describing this idea, but I don't have it with me right now. My request

Re: [Mjpeg-users] lavrec segfault with matrox driver_fb

2005-04-11 Thread Mark James
From: Stephen Mollett <[EMAIL PROTECTED]> Date: Sun, 10 Apr 2005 21:10:33 +0100 Subject: [Mjpeg-users] lavrec segfault with matrox driver_fb For some months, I've had an issue with lavrec on my Marvel G400 capture card. I can record successfully, but when recording ends (either by the -t option o

Re: [Mjpeg-users] dvd with 24 bits/48 kHz audio

2005-04-05 Thread Mark Rages
the waveforme more > exact. > No it does not make sense. Sample rate doesn't affect the accuracy of reconstruction below the Nyquist frequency. Practically, you might want to increase the bit depth *before* doing the conversion if you are concerned about rounding errors in your resampl

Re: [Mjpeg-users] What Recent MJPEG Card?

2004-12-16 Thread Mark Rages
ple cut/paste editing on MPEG without re-encoding. I have a Python library for doing so: http://mlug.missouri.edu/~markrages/software/python_mpeg/ Regards, Mark [EMAIL PROTECTED] --- SF email is sponsored by - The IT Product Guide Read hone

Re: [Mjpeg-users] What Recent MJPEG Card?

2004-12-16 Thread Mark Rages
, 13 Dec 2004 23:10:17 -0600, Mark Rages <[EMAIL PROTECTED]> wrote: > On Tue, 14 Dec 2004 00:26:36 +0100 (CET), Dik Takken > <[EMAIL PROTECTED]> wrote: > > On Mon, 13 Dec 2004, Mark Rages wrote: > > > > > It is also possible to do simple cut/paste editing on MP

[Mjpeg-users] Does anyone use DataVideo DAC-100 w/ Kino?

2004-11-06 Thread Mark Rages
s ADVC300s, which work flawlessly. http://www.canopus.us/US/products/ADVC300/pm_advc300.asp Is anyone here familiar with the DataVideo product? Maybe we'll just return them to the dealer and get the Canopus boxes instead, although they are considerably more expensive. Regards, Mark [

Re: [Mjpeg-users] Re: fix GOP size errors with mjpegtools

2004-11-03 Thread Mark Rages
longer than 15 frames, then use my Python library to split those GOPs. Regards, Mark [EMAIL PROTECTED] --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner f

Re: [Mjpeg-users] Fix for no high priority on main lavrec thread

2004-08-11 Thread Mark James
e the real uid set to root. The problem is that the original code changes the effective uid back to the normal user prior to attempting to change the priority of the video task. Mark --- SF.Net email is sponsored by Shop4tech.com-Lowest price on B

[Mjpeg-users] Fix for no high priority on main lavrec thread

2004-08-04 Thread Mark James
o any setuid being turned off in function lavrec_init, which is called in lavrec_main prior to the priority change code. The call to lavrec_init should be moved to after the priority change code, and the setpriority call should be changed to use getpid() as its second parameter.

[Mjpeg-users] Fix for no audio on lavrec recordings subsequent to the first (2.6 kernel)

2004-08-01 Thread Mark James
parameter, no matter the flag setting, so that one must fetch the current parameter settings before they are sent back in with changes. Copying the code for the VIDIOCGAUDIO ioctl call from pre-recording un-mute to post-recording mute does the trick. Mark

[Mjpeg-users] Python Mpeg-2 Editing Library

2004-05-13 Thread Mark Rages
. It also allows the extraction of single frames as Python Imaging Library (PIL) objects. Get the tarball here: http://mlug.missouri.edu/~markrages/software/python_mpeg You may also be interested in my gop_fixup program to adjust timestamps. The new version works with "large files&q

Re: [Mjpeg-users] mpeg2dec-mjpeg problem, missing frame

2004-05-06 Thread Mark Rages
Disregard my message, I fixed my problem. Regards, Mark [EMAIL PROTECTED] -- To invent, you need a good imagination and a pile of junk. -Thomas Edison --- This SF.Net email is sponsored by Sleepycat Software Learn developer strategies Cisco

Re: [Mjpeg-users] mpeg2dec-mjpeg problem, missing frame

2004-05-06 Thread Mark Rages
Replying to myself from mjpeg-users. The below problem is fixed with the current version of mpeg2dec (non-mjpeg). Any chance of the fix being ported over? or YUV being added as to the mpeg2dec distr4ibution? Is this something I can do myself (how far apart are the codebases)? Regards, Mark

[Mjpeg-users] mpeg2dec-mjpeg problem, missing frame

2004-05-06 Thread Mark Rages
te code = 4 MPEG in libvo = 0 aspect_code=2 4 frames decoded in 0.02 seconds (200.00 fps) Am I doing something wrong? Regards, Mark [EMAIL PROTECTED] -- To invent, you need a good imagination and a pile of junk. -Thomas Edison --- This SF.Net em

Re: [Mjpeg-users] Errors with mjpegtools 1.6.1.93 and 1.6.0 while compiling

2004-02-06 Thread Mark James
> borsti:/video/video # lavplay -v 2 test.mov > lavplay1.6.2 > . > Fatal signal: Segmentation Fault (SDL Parachute Deployed) Try lavplay -v 2 -a 0 test.mov --- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools

Re:[Mjpeg-users] Saving Recording Audio Levels ALSA vs OSS

2003-10-07 Thread Mark James
Jean, to set the sound recording level, and to mute line output I use aumix -S -l 0 -i 15 -l R before recording and aumix -L >/dev/null after recording in my tvr script for scheduling lavrec recordings: http://mrj.bpa.nu/tvr M

[Mjpeg-users] lav2avi.sh available for download?

2003-09-21 Thread Mark James
Hello, From where can I download the lav2avi.sh script mentioned in the mjpegtools manpage for making DivX files? Thank you. -- Mark --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf

[Mjpeg-users] lpcm audio?

2003-08-27 Thread Mark Rages
I am having difficulty getting linear PCM audio to work with mplex and mpeg2 files. Is lpcm in mplex working? I need it to make DVDs. I'm using recent CVS of mjpegtools. The audio comes out as noise, similar to endianness trouble, but I've tried both ways. Regards, Mark [EMAIL

[Mjpeg-users] Compiling mjpegtools 1.6 on Mandrake 9.0

2003-03-02 Thread mark
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I /usr/X11R6/include -I../utils -I/home/mark/jpeg-mmx-0.1.4 -mcpu=i686 -march=i686 -march=athlon-tbird -O3 -pipe -fomit-frame-pointer -Wall -Wunused -c liblavrec.c -MT liblavrec.lo -MD -MP -MF .deps/liblavrec.TPlo -fPIC -DPIC -o .libs/liblavr

[Mjpeg-users] Re: building jpeg-mmx fails (Florin Andrei)

2003-01-24 Thread Mark James
Florin Andrei <[EMAIL PROTECTED]> wrote: > jpeg-mmx-0.1.4 on Red Hat 8.0 fails to build. See attach. > make: *** No rule to make target `fdct_mmx.lo', needed by `libjpeg-mmx.la' This may help: https://sourceforge.net/tracker/index.php?func=detail&aid=548908&group_id=5776&atid=105776 --