How to convert avi to flv in Linux

Posted: 6 October 2011 by scox in Linux, Open Source, Utility
Tags: , , ,

How to convert avi to flv in Linux.I did a couple of tests and these are the results that Ive come up with.Needless to say that I am no expert,they are personal opinions,see them as a starting point.

In the examples we will convert “.avi” to “.flv”,and simply copy the sound.

A typical command, then, would be:

explanation:
ffmpeg the program
-i input.avi the input file
-b 1024k the output bitrate
-s 320×240 the output resolution
-r 25 the output frames per second
-acodec copy the output audio codec
movie_1024_320_25_.flv the output file

via How to convert avi to flv in Linux – Liveleak Forums.

Autumn Lan is Coming!

Posted: 6 August 2011 by scox in Games
Tags: , ,


A.S.D. Born Elite Humans – News.
Gamers di tutta Italia tenetevi pronti!L’evento Lan piu atteso da tutti sta per arrivare!

VirtualBox – Debian Wiki

Posted: 26 July 2011 by scox in Linux

This page contains some how-to, tips and tricks when setting up and using VirtualBox OSE.

viaVirtualBox – Debian Wiki.

Bel programma per ricercare i file all’ interno del tuo computer e molto veloce grazie all’ inidicizzazione dei file iniziale.

Per installarlo in ubuntu o debian aprite il terminale da

applicazioni-accessori-terminale

e digitate

sudo apt-get install recoll

Una volta installato potete lanciarlo da applicazioni-accessori

Potete fare ricerche anche per tipo di file multimediale, messaggi,presentazioni testo ecc…

via Recoll Programma per cercare parti di testo nei tuoi file linux : UBUNTU BLOG| Il blog Italiano Kubuntu Edubuntu Xubuntu.

FlatPress » What is FlatPress?

Posted: 12 July 2011 by scox in CMS, Open Source

FlatPress is an open-source standard-compliant multi-lingual extensible blogging engine which does not require a DataBase Management System to work.

via FlatPress » What is FlatPress?.

Debian squeeze & wheezy, kernel 2.6.32-4 and later, Xorg 7.5

You should use a file in /etc/X11/xorg.conf.d, e.g. /etc/X11/xorg.conf.d/synaptics.conf, for configuration (but this will work just as well in /etc/X11/xorg.conf). The following example shows how to enable tapping and how to configure various other options; you probably won’t need everything in it. Comment out any old config for synaptics before replacing it with this new config.

Section "InputClass"
        Identifier      "Touchpad"                      # required
        MatchIsTouchpad "yes"                           # required
        Driver          "synaptics"                     # required
        Option          "MinSpeed"              "0.5"
        Option          "MaxSpeed"              "1.0"
        Option          "AccelFactor"           "0.075"
        Option          "TapButton1"            "1"
        Option          "TapButton2"            "2"     # multitouch
        Option          "TapButton3"            "3"     # multitouch
        Option          "VertTwoFingerScroll"   "1"     # multitouch
        Option          "HorizTwoFingerScroll"  "1"     # multitouch
        Option          "VertEdgeScroll"        "1"
        Option          "CoastingSpeed"         "8"
        Option          "CornerCoasting"        "1"
        Option          "CircularScrolling"     "1"
        Option          "CircScrollTrigger"     "7"
        Option          "EdgeMotionUseAlways"   "1"
        Option          "LBCornerButton"        "8"     # browser "back" btn
        Option          "RBCornerButton"        "9"     # browser "forward" btn
EndSection

via SynapticsTouchpad – Debian Wiki.

LMMS is a free cross-platform alternative to commercial programs like FL Studio®, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface.

via LMMS – Linux MultiMedia Studio.

Synthesia, Piano for Everyone.

Modificare il file:
/etc/modprobe.d/alsa-base.conf

in fondo aggiungendo:

options snd-hda-intel model=laptop-eapd

salvare e riavviare.

Creare e comprimere PDF da immagini

Posted: 17 May 2011 by scox in Linux

Con ImageMagick creare il pdf:

convert *.jpg output.pdf

Installare pdftk:

sudo aptitude install pdftk

Agire sul file pdf:

pdf2ps output.pdf enorme.ps
ps2pdf enorme.ps compresso.pdf