
Recherche avancée
Autres articles (50)
-
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 -
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 -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (7198)
-
Detect if FFmpeg is running or has stopped running
21 février 2013, par asprinI'm using C to scan a directory which contains frames extracted by ffmpeg. Now in the event that the last file is reached during the scan, I need to check for two conditions :
- It's the last file as the video duration is over.
- It's the last file as ffmpeg terminated abruptly and is no longer able to populate the directory
My C program workflow is like :
while(<there exists="exists" files="files" in="in" the="the" directory="directory">)
{
// iterate over them and do something with each frame
}
// coming out of the loop means no more files available...so I need a if condition
if(<check if="if" ffmpeg="ffmpeg" is="is" stopped="stopped">) // <-- need to know what to put inside the condition
{
// start it again
}
else
{
// video is over, nothing more left to do
}
</check></there>I'm thinking I can do this using
Process ID
of ffmpeg, but how would I get that info ? Any other alternative way of checking ifffpmeg
has stopped ?Some metadata
OS : Windows 7
IDE : Dev C++
Language Used : C -
Revision a76caa7ff4 : Alter Speed 3. This patch deletes the variance based speed three partitioning.
19 septembre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Alter Speed 3.This patch deletes the variance based speed three partitioning.
Speed 3 now uses the same partitioning method as speed 2
but with some stricter conditions.The speed and quality are now somewhere between speeds 2 and 4
whereas before it was worse in both than speed 4.Change-Id : Ia142e7007299d79db3ceee6ca8670540db6f7a41
-
Revision 2901bf2d00 : Reducing the number of recursive calls. Both decode_modes_sb and decode_modes_b
30 octobre 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/decoder/vp9_decodframe.c
Reducing the number of recursive calls.Both decode_modes_sb and decode_modes_b had conditions to immediately
return at the beginning. Eliminating these conditions here and calling
these functions only to do a real work. Also unrolling loop for
PARTITION_SPLIT.Change-Id : I2fc41cb74ac491f045a2f04fe68d30ff4aaa555d