
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 (67)
-
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...) -
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
Sur d’autres sites (13818)
-
corrected docs : docs did not reflect the path parameter to be const. see #1593
29 juillet 2012, par Philipp Schafftcorrected docs : docs did not reflect the path parameter to be const. see #1593
git-svn-id : http://svn.xiph.org/trunk/vorbis@18479 0101bb08-14d6-0310-b084-bc0e0c8e3800
-
shell script ffmpeg stops after 2 jobs
19 octobre 2015, par Chris James ChampeauI have a pretty simple shell script and after doing the first two jobs, it just stops and sits there, doesnt do anything, it doesnt seem to matter what the third job is, if I switch the order etc, it will not finish it.
Any ideas would be great...
Here is my shell script
for f in "$@"
do
name=$(basename "$f")
dir=$(dirname "$f")
/opt/local/bin/ffmpeg -i "$f" -y -b 250k -deinterlace -vcodec vp8 -acodec libvorbis -nostdin "$dir/webm/${name%.*}.webm"
/opt/local/bin/ffmpeg -i "$f" -y -b 250k -strict experimental -deinterlace -vcodec h264 -acodec aac -nostdin "$dir/mp4/${name%.*}.mp4"
/opt/local/bin/ffmpeg -i "$f" -y -ss 00:00:15.000 -deinterlace -vcodec mjpeg -vframes 1 -an -f rawvideo -s 720x480 "$dir/img/${name%.*}.jpg"
done -
Detailed explanation of struct AVPacket
27 juin 2013, par AppyI am following this tutorial to make a video player in C/C++ , using SDL and FFMpeg libraries . Unfortunately , FFMpeg libraries lack proper documentation . I am in the third part of the tutorial .
Trying to properly understand the code requires me to understand about
struct AVPacket
completely . This is all the information I could find about AVPacket by searching it on Google :-
And most of the information is redundant . Can anyone explain me atleast the first seven members of AVPacket in detail ?
PS : What happens when we allocate an AVPacket by
AVPacket pkt;
?
What are the various members of pkt , when it is just allocated ?
How is it different in case ofstatic AVPacket pkt
?Thanks :)