
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5357)
-
Revert "dsputil : make {add/put/put_signed}_pixels_clamped() non-static."
25 août 2012, par Mans RullgardRevert "dsputil : make add/put/put_signed_pixels_clamped() non-static."
-
avconv : make sure packets put into the muxing FIFO are refcounted
8 février 2017, par wm4avconv : make sure packets put into the muxing FIFO are refcounted
Some callers (like do_subtitle_out(), or do_streamcopy()) call this
with an AVPacket that is not refcounted. This can cause undefined
behavior.Calling av_packet_move_ref() does not make a packet refcounted if it
isn’t yet. (And it can’t be made to, because it always succeeds,
and can’t return ENOMEM.)Call av_packet_ref() instead to make sure it’s refcounted.
Cc : libav-stable@libav.org
Signed-off-by : Martin Storsjö <martin@martin.st> -
TCL to make FFMPEG command run background ? [duplicate]
20 novembre 2017, par M. D. PThis question already has an answer here :
my code is :
proc a {} {
exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" c:/test/sample-a.avi &
}
a&
is not working, as described in link : https://www.tcl.tk/man/tcl8.5/tutorial/Tcl26.htmlcan any can provide me proper code which will work with tcl and ffmpeg to capture my video in background, except using thread.