Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Apr 2005 02:35:06 +0200
From:      =?ISO-8859-1?Q?Lluis_L=F3pez?= <cronopiolopez@gmail.com>
To:        freebsd-multimedia@freebsd.org
Subject:   DVD burning question
Message-ID:  <8f8eb53e050408173533358528@mail.gmail.com>
In-Reply-To: <8f8eb53e0504081724104790a4@mail.gmail.com>
References:  <20050408140100.1d4fee0e@bofh.spyderweb.com.au> <8f8eb53e0504081724104790a4@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Apr 8, 2005 6:31 AM, Tim Aslat <tim@spyderweb.com.au> wrote:
> Hi All,
>
> Hopefully this is the right forum for this question, if not I apologise
> in advance.
>
> I'm trying to create a security application using FreeBSD as the base
> OS, with a combination of other open source software, a video capture
> card (Hauppauge PVR-350) and a couple of DVD burners.
>
> The people I'm developing it for want me to re-build it to enable
> on-the-fly burning of the captured video stream, instead of capturing
> to HDD then transcoding, etc. I'm not entirely sure this is possible,
> and would like to know other people's experiences or suggestions.
>
> Regards
>
> Tim
>
> --
> Tim Aslat <tim@spyderweb.com.au>
> Spyderweb Consulting
> http://www.spyderweb.com.au
> Phone: +61 8 84193434
> Mobile: +61 0401088479
> _______________________________________________
> freebsd-multimedia@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia
> To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.=
org"
>
This is my "one step" solution:
----8<----cut-here---8<---
#!/bin/sh
# Step 1: making fifos
mkfifo fifoaudio fifovideo fifodvd
# Step 2: record time
echo "Put record limit in seconds"
read limit
# Step 3: The great pipe
cat /dev/cxm0|mpeg2desc -a 0 -o fifoaudio -v 0 -o fifovideo </dev/fd/0
> /dev/null|\
mplex -f8 fifoaudio fifovideo -l $limit -o fifodvd|dvdauthor -o dvd -f fifo=
dvd
# Step 4: making TOC
dvdauthor -T -o dvd
# Step 5: burning dvd
growisofs -Z /dev/cd0 -dvd-video dvd
# Step 6: cleaning
rm fifoaudio fifovideo fifodvd
dvddirdel -o dvd
----8<----cut-here---8<---

Needs disk sppace, but is the most fast solution that I have found .
For work needs:
multimedia/dvdauthor
multimedia/mplex
sysutils/growisofs

Regards, Luis L=F3pez Sol=E9.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?8f8eb53e050408173533358528>