Matthew Dillon
2003-Jun-15 13:41 UTC
dvd+rw-tools ported to FreeBSD (Sony 500A DVD[+/-]R[W] support)
I just finished up a port of Andy Polyakov's excellent dvd+rw-tools to FreeBSD, and he has incorporated the patches into his release: http://fy.chalmers.se/~appro/ http://fy.chalmers.se/~appro/linux/DVD+RW/ http://fy.chalmers.se/~appro/linux/DVD+RW/tools/ (version 5.8.4.4.4) These tools support DVD-R, DVD-RW, DVD+R, and DVD+RW format dvd burners, including the popular Sony 500A (which I just bought myself, hence the port). It should work on a wider variety of burners then the half-broken GNU dvdrecord tools work on (the GNU dvdrecord is a hacked up version of the original cdrecord). Andy's tool set is based around his growisofs program which features multi-session recording capabilities. You also need to have mkisofs installed since growisofs uses it. You can burn individual files or ISO images with andy's tools. Someone should build a FreeBSD port for this toolset, there's a gaping hole in the FreeBSD ports tree where DVD-recording ought to be. -Matt Matthew Dillon <dillon@backplane.com>
Chuck Swiger
2003-Jun-15 15:24 UTC
dvd+rw-tools ported to FreeBSD (Sony 500A DVD[+/-]R[W] support)
Matthew Dillon wrote: [ ... ]> You also need to have mkisofs installed since growisofs uses it. You > can burn individual files or ISO images with andy's tools. > > Someone should build a FreeBSD port for this toolset, there's a gaping > hole in the FreeBSD ports tree where DVD-recording ought to be.OK. How does this look: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dvd+rw-tools/ # dvd+rw-tools/Makefile # dvd+rw-tools/distinfo # dvd+rw-tools/pkg-descr # dvd+rw-tools/pkg-plist # echo c - dvd+rw-tools/ mkdir -p dvd+rw-tools/ > /dev/null 2>&1 echo x - dvd+rw-tools/Makefile sed 's/^X//' >dvd+rw-tools/Makefile << 'END-of-dvd+rw-tools/Makefile' X# New ports collection makefile for: dvd+rw-tools X# Date created: 2003-6-15 X# Whom: chuck@pkix.net X# X# $FreeBSD: $ X XPORTNAME= dvd+rw-tools XPORTVERSION= 5.8.4.4.4 XCATEGORIES= sysutils XMASTER_SITES= http://fy.chalmers.se/~appro/linux/DVD+RW/tools/ X XMAINTAINER= chuck@pkix.net XCOMMENT= DVD+RW burning software X XRUN_DEPENDS= ${LOCALBASE}/bin/mkisofs:${PORTSDIR}/sysutils/mkisofs X XMAN1= growisofs.1 X Xpost-install: X ${INSTALL_MAN} ${WRKSRC}/growisofs.1 ${MANPREFIX}/man/man1/ X X# NO_PACKAGE= ignores cflags and cxx X X.include <bsd.port.mk> END-of-dvd+rw-tools/Makefile echo x - dvd+rw-tools/distinfo sed 's/^X//' >dvd+rw-tools/distinfo << 'END-of-dvd+rw-tools/distinfo' XMD5 (dvd+rw-tools-5.8.4.4.4.tar.gz) = 75de7d3741f7373a1eacbf48213b6e4c END-of-dvd+rw-tools/distinfo echo x - dvd+rw-tools/pkg-descr sed 's/^X//' >dvd+rw-tools/pkg-descr << 'END-of-dvd+rw-tools/pkg-descr' XDVD+RW Tools by Andy Polyakov. This software allows one to use a DVD Xburner, as well as supporting multisession CD-R/W formats, primarily Xvia the "growisofs" utility. X Xgrowisofs was originally designed as a frontend to mkisofs to facilitate Xappending of data to ISO9660 volumes residing on random-access media such as XDVD+RW, DVD-RAM, plain files, hard disk partitions. In the course of Xdevelopment general purpose DVD recording support was implemented, and as of Xnow growisofs supports not only random-access media, but even mastering of Xmulti-session DVD media such as DVD+R and DVD-R/-RW. In addition growisofs Xsupports first-/single-session recording of arbitrary pre-mastered image X(formatted as UDF, ISO9660 or any other file system, if formatted at all) to Xall supported DVD media types. X XWWW: http://fy.chalmers.se/~appro/linux/DVD+RW END-of-dvd+rw-tools/pkg-descr echo x - dvd+rw-tools/pkg-plist sed 's/^X//' >dvd+rw-tools/pkg-plist << 'END-of-dvd+rw-tools/pkg-plist' Xbin/growisofs Xbin/dvd+rw-format Xbin/dvd+rw-booktype Xbin/dvd+rw-mediainfo X END-of-dvd+rw-tools/pkg-plist exit -- -Chuck
brian@hyperreal.org
2003-Jun-16 12:58 UTC
dvd+rw-tools ported to FreeBSD (Sony 500A DVD[+/-]R[W] support)
On Sun, 15 Jun 2003, Matthew Dillon wrote:> Someone should build a FreeBSD port for this toolset, there's a gaping > hole in the FreeBSD ports tree where DVD-recording ought to be.How timely! I was just working last night on burning some mpgs to DVD to watch on a standard DVD player. The dvdrecord program worked fine for that step, but it's good to see more tools. What would really be nice is a working dvdauthor port - the one that's there has missing dependencies and certain parts of the toolchain (like mpeg2desc) that just didn't work. Does anyone use any other tools to author video DVDs under FreeBSD? Even to the extent of using a Windows app like Nero under wine? Brian