
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4584)
-
How can i have a good frame quality with PHP5-FFMPEG ?
13 mars 2012, par YeppaoI'm trying tu use PHP5-FFMPEG in my website, but when i try to take some frame of any movie, the quality of this frame is really poor...
Here's the simply way i use to write this frames into images.
$frame = $mov->getFrame($_GET['frame']);
$img = $frame->toGDImage();
header("Content-type: image/jpeg");
imagejpeg($img);Can i have a better quality with this extension ? Or I have to invoke a ffmpeg command line ?
Image link :
http://i.stack.imgur.com/OKXUj.jpg -
Fix frame height vs field height confusion in MXF decoding.
7 février 2012, par Joseph ArtsimovichFix frame height vs field height confusion in MXF decoding.
-
Tailing last frame of a growing video file
9 janvier 2012, par ebayindirOn windows, I have a dynamically created uncompressed avi video file which grows overtime. The application which generates the video file can only write to a physical file. I can start/stop generation of video file and delete the old video file easily.
I would like to analyze the changing last frame of the growing video file to make some decision depending on the content of the current/latest image in real time. If I can achieve more than 10fps it should be enough.
I would like to get uncompressed images whenever a new frame available in the video file.As a file format I think png could be the best options in that case but I am open to alternatives.
I wonder if such a thing is possible with ffmpeg or with a similar tool.I prefer to analyze the image and make decisions by using a perl+Imager module.
Tha analyisis requirements are not complicated. Basically I just need to find existence of a few small images in certain locations inside the last frame.
I would also appreciate if you can suggest an efficient way to get this information in to my application from ffmpeg.
For example piping directly to my code or reading from saved png files.I know perl already has an ffmpeg interface module but as far as I understand that module can't provide the functionality I need.