
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (47)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7210)
-
movenc : Remove an unnecessary condition when flushing fragments
18 décembre 2014, par Martin Storsjömovenc : Remove an unnecessary condition when flushing fragments
If fragments == 0 it means we haven’t written any moov atom yet.
If the empty_moov flag is set, we already have written an empty moov
atom at startup. Thus, the check for empty_moov is redundant.This is in preparation for allowing writing the moov atom later,
even when using the empty moov flag.Signed-off-by : Martin Storsjö <martin@martin.st>
-
ffmpeg on windows , how to compile examples ?
13 juin 2020, par ESZI compiled ffmpeg on windows 10 as described in this guide . I need to compile the doc/examples/extract_mvs.c . whenever I try to run : gcc extract_mvs.c the copiler don't seem to find the included libraries. I also tried to run "make" but the output is that make has nothing to do with extract_mvs.c . I appreciate any help since I am still a newbie :)


-
fftools/ffmpeg : move processing AV_PKT_DATA_QUALITY_STATS to do_video_stats()
16 décembre 2021, par Anton Khirnovfftools/ffmpeg : move processing AV_PKT_DATA_QUALITY_STATS to do_video_stats()
This is a more appropriate place for this code, since the values we read
from AV_PKT_DATA_QUALITY_STATS side data are primarily written into
video stats. This ensures that the values written into stats actually
apply to the right packet.Rename the function to update_video_stats() to better reflect its new
purpose.