Jika anda bingung untuk mendownload file-file besar seperti ISO linux dan lain-lain. Silahkan menggunakan JIGO.Jigsaw Download, or short jigdo, is a tool designed to ease the distribution of very large files over the internet, for example CD or DVD images. Its aim is to make downloading the images as easy for users as a click on a direct download link in a browser, while avoiding all the problems that server administrators have with hosting such large files.
jigdo is Free Software, distributable under the GNU GPL.
Label: File Downloader, JIGO
Lagi bingung ni mau ngrubah FLV ke MPEG, biar bisa dijadiin vieod CD. Hmm... terus googling2 and nemu programnya. Namanya ffmpeg, dipake di Linux oom. Bagi yang menggunakan Ubuntu, tinggal apt-get aja. Di repository pasti ada. Kebetulan saya pake PClinuxOS.
apt-get ffmpeg
Cuman ni converter masih belum ada GUI nya =P. Jadi masih text mode gitu. Heheheh. Nah jika sudah terinstall, untuk mulai mengonvert silahkan kasih perintah berikut.
ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320x240 test.mpg
Penjelasannya :
video.flv : adalah file flv anda
-ab : Set audio bitrate. Jika tidak diset, defaultnya adalah 64kbps
-ar : Set audio samplerate. Defaultnya adalah 44100hz
-b : Set video bitrate. Defaultnya adalah 2000kbps
-s : Set ukurannya. Defaultnya adalah 160×128px
tet.mpg : adalah nama file mpg nya
Label: Converter in Linux, ffmpeg, FLV Converter, Video Converter