
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 (72)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (7410)
-
avutil/mathematics/av_add_stable : check for the common case of inc=1
2 juin 2014, par Michael Niedermayer -
libavfilter/vf_vpp : Add common filters of the qsv vpp
24 août 2017, par Huang, Zhengxulibavfilter/vf_vpp : Add common filters of the qsv vpp
Add common filters of the qsv vpp features including scale,denosie,
deinterlace,frc,crop and procAmp.Performance will be significantly reduced in the test if using cascade
mode just like qsv framerate + qsv scale + qsv deinterlace + qsv denoise in
separated way no matter in system or video memmory cases.
And the code is so redundant because so much the same just as session and
surface’s creation and management.
So we add a common qsv filter.Usage :
hwaccel qsv -c:v h264_qsv -r 25 -i in -vf
vpp_qsv=w=iw/2:h=400:deinterlace=1:framerate=60:detail=50:denoise=50b 2M -maxrate 3M -c:v h264_qsv -y out.h264
Signed-off-by : ChaoX A Liu <chaox.a.liu@gmail.com>
Signed-off-by : Zhengxu Huang <zhengxu.maxwell@gmail.com>
Signed-off-by : Andrew Zhang <huazh407@gmail.com>
Change-Id : I130392ce722138c209ab658c5f03f0009b6e8024
Signed-off-by : Maxym Dmytrychenko <maxim.d33@gmail.com> -
Show all four videos as thumbnails but play them one by one using FFMPEG
18 juillet 2018, par p.jadhavI want to show four videos as thumbnails but play them one by one (video1 plays first then video2, etc).
I tried this
String[] cmd={"-loop","1","-t","36","-i","/storage/emulated/0/Download/trasprent_bg.png","-i","video1.mp4","-i","video2.mp4","-i","video3.mp4","-i","video4.mp4","-i","collage_1.png","-filter_complex","[1:v]scale=500:500,crop=266:266[tfg];[2:v]scale=500:500,crop=266:266,setpts=PTS+9/TB[bfg];[3:v]scale=500:500,crop=266:266,setpts=PTS+18/TB[threefg];[4:v]scale=500:500,crop=266:266,setpts=PTS+27/TB[fourfg];[5:v]scale=-1:-1[colage];[0:v][tfg]overlay=2:2:eof_action=pass[o1];[o1][bfg]overlay=272:2:eof_action=pass[o2];[o2][threefg]overlay=2:272:eof_action=pass[o3];[o3][fourfg]overlay=272:272:eof_action=pass:shortest=1[o4];[o4][colage]overlay=0:0","-an","videoCrop.mp4"};
which plays the videos one by one but only shows the playing video with nothing showing for the other videos :
Using above command play video as below.
first video play,second video play,third video playI want to display all four output videos but play them one by one like below.
i spent lot’s of day.Please Help me.