I install flv2dvd in my ubuntu desktop and converted all my flv files to a single DVD ISO Image .
How did I do ? It is very simple .
I install flv2dvd in my ubuntu desktop.
First I updated
verman@verman-desktop:~$ sudo apt-get update
Then installed
verman@verman-desktop:~$ sudo apt-get install flv2dvd
[sudo] password for verman:
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following extra packages will be installed:
dvdauthor lame-extras
The following NEW packages will be installed:
dvdauthor flv2dvd lame-extras
0 upgraded, 3 newly installed, 0 to remove and 353 not upgraded.
Need to get 949kB of archives.
After unpacking 2769kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
WARNING: The following packages cannot be authenticated!
dvdauthor lame-extras flv2dvd
Install these packages without verification [y/N]? y
Get:1 http://ubuntu.global-web.us binary/ flv2dvd 1.0 [1118B]
Get:2 http://us.archive.ubuntu.com gutsy/universe dvdauthor 0.6.14-1build1 [159kB]
Get:3 http://us.archive.ubuntu.com gutsy/multiverse lame-extras 3.97-0.0 [789kB]
Fetched 949kB in 1m36s (9784B/s)
Selecting previously deselected package dvdauthor.
(Reading database … 166313 files and directories currently installed.)
Unpacking dvdauthor (from …/dvdauthor_0.6.14-1build1_i386.deb) …
Selecting previously deselected package lame-extras.
Unpacking lame-extras (from …/lame-extras_3.97-0.0_i386.deb) …
Selecting previously deselected package flv2dvd.
Unpacking flv2dvd (from …/archives/flv2dvd_1.0_i386.deb) …
Setting up dvdauthor (0.6.14-1build1) …
Setting up lame-extras (3.97-0.0) …
Setting up flv2dvd (1.0) …
verman@verman-desktop:~$
after installation, I collected all flv files into a single folder.
verman@verman-desktop:~$ sudo mkdir /Desktop/flv
verman@verman-desktop:~$ cp *.flv /Desktop/flv
verman@verman-desktop:~$ cd /Desktop/flv
verman@verman-desktop:~/Desktop/flv$ ls
BEST_funny_accidents_.flv
it_dojo_e46.flv
Maahi_-_Full_Song.flv
O_Jaana_-__Dance_With_Me_Mix_.flv
Virtual_Barber_Shop__Audio…use_headphones__close_ur_eyes_.flv
verman@verman-desktop:~/Desktop/flv$ flv2dvd *
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2007 Fabrice Bellard, et al.
configuration: –enable-gpl –enable-pp –enable-swscaler –enable-pthreads –enable-libvorbis –enable-libtheora –enable-libogg –enable-libgsm –enable-dc1394 –disable-debug –enable-libmp3lame –enable-libfaadbin –enable-libfaad –enable-libfaac –enable-xvid –enable-x264 –enable-liba52 –enable-amr_nb –enable-amr_wb –enable-shared –prefix=/usr
libavutil version: 1d.49.3.0
libavcodec version: 1d.51.38.0
libavformat version: 1d.51.10.0
built on Dec 20 2007 21:25:50, gcc: 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)
Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)
Input #0, flv, from ‘Baba_Ramdev_-Yoga_for_Obesity__Motapa_Ke_Liye_.flv’:
Duration: 00:58:37.3, start: 0.000000, bitrate: 64 kb/s
Stream #0.0: Video: flv, yuv420p, 320×240, 25.00 fps(r)
Stream #0.1: Audio: mp3, 22050 Hz, mono, 64 kb/s
Output #0, dvd, to ‘output.mpg’:
Stream #0.0: Video: mpeg2video, yuv420p, 720×480, q=2-31, 6000 kb/s, 29.97 fps(c)
Stream #0.1: Audio: ac3, 48000 Hz, mono, 448 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
at the end the DVD ISO did not convert and displayed a error
/usr/bin/flv2dvd: line 51: mkisofs: command not found
————————————————————————-
STAT: Processing output.mpg…
STAT: VOBU 4016 at 514MB, 1 PGCSS
INFO: Video pts = 0.500 .. 1611.476
INFO: Audio[0] pts = 0.500 .. 1611.444
STAT: VOBU 4023 at 515MB, 1 PGCS
INFO: Generating VTS with the following video attributes:
INFO: MPEG version: mpeg2
INFO: TV standard: ntsc
INFO: Aspect ratio: 4:3
INFO: Resolution: 720×480
INFO: Audio ch 0 format: ac3/1ch, 48khz drc
STAT: fixed 4023 VOBUS
DVDAuthor::dvdauthor, version 0.6.14.
Build options: gnugetopt magick iconv freetype
Send bugs to <dvdauthor-users@lists.sourceforge.net>
INFO: dvdauthor creating table of contents
INFO: Scanning dvd/VIDEO_TS/VTS_01_0.IFO
/usr/bin/flv2dvd: line 51: mkisofs: command not found
verman@verman-desktop:~/Desktop/flv$
———————————————————————-
Then I installed mkisofs
verman@verman-desktop:~/Desktop/flv$ sudo apt-get install mkisofs
[sudo] password for verman:
Reading package lists… Done
Building dependency tree
Reading state information… Done
Suggested packages:
cdrecord
The following NEW packages will be installed:
mkisofs
0 upgraded, 1 newly installed, 0 to remove and 353 not upgraded.
Need to get 347kB of archives.
After unpacking 1327kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
mkisofs
Install these packages without verification [y/N]? y
Get:1 http://us.archive.ubuntu.com gutsy/multiverse mkisofs 10:2.01.01a33-0ubuntu2 [347kB]
Fetched 347kB in 3s (101kB/s)
Selecting previously deselected package mkisofs.
(Reading database … 166340 files and directories currently installed.)
Unpacking mkisofs (from …/mkisofs_10%3a2.01.01a33-0ubuntu2_i386.deb) …
Setting up mkisofs (10:2.01.01a33-0ubuntu2) …
verman@verman-desktop:~/Desktop/flv$
Then it started to convert all flv to DVD ISO.
————————————————–
STAT: Processing output.mpg…
STAT: VOBU 32 at 4MB, 1 PGCS
INFO: Video pts = 0.500 .. 15.681
INFO: Audio[0] pts = 0.500 .. 15.636
STAT: VOBU 38 at 5MB, 1 PGCS
INFO: Generating VTS with the following video attributes:
INFO: MPEG version: mpeg2
INFO: TV standard: ntsc
INFO: Aspect ratio: 4:3
INFO: Resolution: 720×480
INFO: Audio ch 0 format: ac3/1ch, 48khz drc
STAT: fixed 38 VOBUS
DVDAuthor::dvdauthor, version 0.6.14.
Build options: gnugetopt magick iconv freetype
Send bugs to <dvdauthor-users@lists.sourceforge.net>
INFO: dvdauthor creating table of contents
INFO: Scanning dvd/VIDEO_TS/VTS_01_0.IFO
Setting input-charset to ‘UTF-8′ from locale.
Total translation table size: 0
Total rockridge attributes bytes: 0
Total directory bytes: 4096
Path table size(bytes): 42
Max brk space used 0
3353 extents written (6 MB)
verman@verman-desktop:~/Desktop/flv$ ls
dvd.iso
verman@verman-desktop:~/Desktop/flv$
————————————————————-
Now this dvd.iso image file can be burned through our favourate opensource burners and then start play it in your favourate DVD players.
* Note : No flv files will be seen after you convert to dvd.iso, try to backup your flv file before you convert.