This tutorial will explain how to install ATI fglrx drivers in Debian Lenny
Continue reading…
How to install gnash in Debian 5.0 (Lenny)
Gnash is a GNU Flash movie player. Flash is an animation file format pioneered by Macromedia which continues to be supported by their successor company, Adobe. Flash has been extended to include audio and video content, and programs written in ActionScript, an ECMAScript-compatible language. Gnash is based on GameSWF, and supports most SWF v7 features and some SWF v8 and v9.
Continue reading…
Upgrade multiple debian systems with Approx
Approx is an HTTP-based Debian archive server. It fetches packages from remote repositories on demand, and caches them for local use.
Continue reading…
How to Convert OGV to FLV Using ffmpeg
This tutorial will explainhow to convert an OGV file to FLV. You will need the ffmpeg audio and video encoder.
Install ffmpeg in debian
#apt-get install ffmpeg
To convert an OGV file to flv file use the following command
ffmpeg -i input_file.ogv output_file.flv
You can shrink the size of the output file using the following command
ffmpeg -i input_file.ogv -s 800×600 output_file.flv
This also reduces the size of the Flash video file.