Accueil > programmes > Images, Sons, Vidéos > vidéo lecteurs, codecs...
vidéo lecteurs, codecs...
Publié le 28 février 2007, dernière mise-à-jour le 7 janvier 2022, 10 visites, visites totales.
( archive 2007 )
lecteurs vidéos
mplayer, vlc, totem, xine, aviplay
sudo apt-get install mplayer vlc wxvlc totem xine-ui avifile-player
codecs
sudo apt-get install gstreamer0.10-plugins-good gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 gstreamer0.10-gl gstreamer0.10-pitfdll gstreamer0.10-sdl gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse mpg321 w32codecs
analyseurs de vidéo
-*
file fichier
-* totem fichier
puis propriétés
-* mplayer -identify -vc null -ac null -frames 0 fichier
-* tcprobe -i fichier -H 15
-* midentify fichier
( voir en dessous )
-* mediainfo
( non essayé : ici )
-* avinaptic
(non essayé ici ) sudo apt-get install file totem mplayer transcode
-* themonospot ( ubuntu 7.10 or plus ) ici
analyseur d’audio
- mp3info fichier
mp3info /tmp/a.mp3
- mp3info-gtk
videotype :
sudo apt-get install libgtk2-gladexml-perl liburi-perl mplayer nautilus-actions puis ici et install.pl puis sous nautilus clicdroit/videotype
aviogminfo : ??
sudo apt-get install glib gtkmm libxml2 libogg libvorbis ffmpeg
- midentify
# !/bin/sh # # This is a wrapper around the -identify functionality. # It is supposed to escape the output properly, so it can be easily # used in shellscripts by ’eval’ing the output of this script. # # Written by Tobias Diedrich # Licensed under GNU GPL.
if [ -z "$1" ] ; then echo "Usage : midentify [ ...]" exit 1 fi
mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null | sed -ne ’/^ID_/ s/[]()|&;<>`’"’"’\\ !$" []/\\&/g ;p ’