
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (112)
-
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 ;
-
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 (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (29276)
-
avformat/matroskaenc : Don't use stream side-data size
21 mai 2020, par Andreas Rheinhardtavformat/matroskaenc : Don't use stream side-data size
av_stream_get_side_data() tells the caller whether a stream has side
data of a specific type ; if present it can also tell the caller the size
of the side data via an optional argument. The Matroska muxer always
used this optional argument, although it doesn't really need the size,
as the relevant side-data are not buffers, but structures. So change
this.Furthermore, relying on the size also made the code susceptible to
a quirk of av_stream_get_side_data() : It only sets the size argument if
it found side data of the desired type. mkv_write_video_color() checks
for side-data twice with the same variable for the size without resetting
the size in between ; if the second type of side-data isn't present, the
size will still be what it was after the first call. This was not
dangerous in practice, as the check for the existence of the second
side-data compared the size with the expected size, so it would only be
problematic if lots of elements were to be added to AVContentLightMetadata.Reviewed-by : James Almer <jamrial@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
Extract H.264 data for a P-Frame using command line
10 décembre 2019, par cloudravenI want to use ffmpeg to extract frame data from command line, similar to what av_read_frame does. I want to extract the full data of arbitrary frames without decoding or re-encoding them. (i.e. I expect extracted P-frames to be very small and not reconstructed from their reference frames)
I know I can code a tiny tool for doing this, but I suspect this functionality may be already exposed through a bitstream filter in the command line. Is that the case ?
-
How to slice data into HDFS by using ffmpeg
2 septembre 2016, par user1805861I checked here "Output of ffmpeg into HDFS directly" we can put ffmpeg data into HDFS .
How to slice data into HDFS by using FFMpeg Segment muxer ?