
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
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 (13068)
-
Add VUI parameters to h.264 post encode
20 septembre 2016, par Dustin KersteinApparently ffmpeg/libx264 doesn’t add these VUI parameters and this is causing issues with my decoder. Avidemux 2.5 does (2.6 does not) but I would very much like to avoid preparing/re-encoding the hundreds of files.
The VUI parameters I am looking to add are :
- max_num_reorder_frames=0
- bitstream_restriction_flag=1
Is anyone aware of any tools that could accomplish this without re-encoding ? If this is something that would need to be custom written, where would be a good place to find the right person ?
Thanks,
Dustin -
Add VUI parameters to h.264 post encode
20 septembre 2016, par Dustin KersteinApparently ffmpeg/libx264 doesn’t add these VUI parameters and this is causing issues with my decoder. Avidemux 2.5 does (2.6 does not) but I would very much like to avoid preparing/re-encoding the hundreds of files.
The VUI parameters I am looking to add are :
- max_num_reorder_frames=0
- bitstream_restriction_flag=1
Is anyone aware of any tools that could accomplish this without re-encoding ? If this is something that would need to be custom written, where would be a good place to find the right person ?
Thanks,
Dustin -
Debugging Gstreamer pipeline with tee and a filesink in C
28 septembre 2020, par NicolasBourbakiThere is an excellent example on how to construct a C program using GStreamer and its
tee
andfilesink
elements on https://gist.github.com/crearo/a49a8805857f1237c401be14ba6d3b03.
(Another one can be found on https://gstreamer.freedesktop.org/documentation/tutorials/basic/multithreading-and-pad-availability.html?gi-language=c).

The idea of the
tee
element in a pipeline is similar like thetee
program in Unix : Like a T-shaped tube, it allows to add a bifurcation to a pipeline, which is in my case used to display a video stream to the screen (which works perfectly) and writing it at the same time to a file (which doesn't work - the file is created but stays empty, i.e. has a size of 0 bytes after closing the program).

I deviated from the examples mentioned above by neither having a queue element for recording (because I also don't have one for displaying, which works) as well as neither having an encoder nor a muxer. Although this might be a problem for what gets written to the file in the end, I would expect that there is written something to the file at all.


The program does compile. What additional diagnostics could I run in order to pin down the problem ?