
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (71)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11512)
-
Capture a webcam continuously, capturing on-demand to image file
12 février 2015, par kryeI am trying to set up a webcam stream that I can take pictures from, using ffmpeg. I’m not sure as to how to set everything up ; I’d like to use RTSP and have a ffmpeg (or ffserver or any combination thereof) instance dumping the webcam stream into a stream, and having another client that would get passively opened that would capture a frame instantaneously with proper synchronization and such.
The problem I’m encountering is in getting this set up. There seem to be many conflicting responses to this question out there.
I’d like to read from either
/dev/video0
or/dev/video1
(using the video4linux2 format/protocol), and I’d like to capture the frames and store them as PNG images.Any help would be greatly appreciated.
-
FFMPEG Fade in and Fade out for Overlay
18 novembre 2015, par ThommyI’m trying to add Overlay-Pictures to my video via FFMPEG (on Android). For know I managed to display the Image between a certain time span. But now, additionally, I want to add a fade in and fade out animation.
Here is what I have so far :ArrayList<string> cmd = new ArrayList<string>(); cmd.add("-i");
cmd.add("video.mp4");
cmd.add("-i");
cmd.add("../image.png");
cmd.add("-filter_complex");
cmd.add("overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:enable='between(n,1,12)'");
cmd.add("out.mp4");
</string></string>How do I need to add the Fade in and Fade Out options.
-
ffmpeg creating MPEG Video slice code 01e0
6 avril 2014, par dinatisI have been using ffmpeg to encode some MPEG files (-vcodec mpeg1video), but at the end of the first slice, I see the code 01e0. The decoder implementation I am using is expecting a code in the range 0101 - 01af. So when 01e0 is encountered, the decoder thinks there are no more slices, pictures or GOP's.
Does anyone what the 01e0 code signifies and what ffmpeg options I should use to get the slice codes (if that is what they are) appearing in the expected range ?