
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (27)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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
Sur d’autres sites (4603)
-
Merge commit ’58bc38a5f224d29b79338200459792c765c25fd5’
13 avril 2014, par Michael NiedermayerMerge commit ’58bc38a5f224d29b79338200459792c765c25fd5’
* commit ’58bc38a5f224d29b79338200459792c765c25fd5’ :
tiffdec : use correct data type for palette entries and set alpha to 0xFFConflicts :
libavcodec/tiff.cSee : dbfdb288c1921eeb9fef5bca20eee33da7fcdd71
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
Shades of black
14 février 2011, par Mans — Random ramblingsSome time ago now, I was looking for a new laptop. Having compared the technical specifications of a number of models, I turned my attention to the most important aspect : the colour. Everybody knows black is the best colour, but which particular shade of black ? There are, apparently, quite a … Continue reading
-
ffmpeg : Cover image for video
15 avril 2014, par Michael HerrmannI have a video file
video.mp4
with sound (file information and download links below). I also have an imagecover.png
which contains a logo and a caption for the video. I want to create a new video which starts by showingcover.png
, then blends in the first frame ofvideo.mp4
within one second, then continues to playvideo.mp4
.My failed attempt :
I used ffmpeg to extract the first frame of
video.mp4
into image filefirst_frame.png
. I then created videofade.mp4
with a transition fromcover.png
tofirst_frame.png
:ffmpeg -loop 1 -i cover.png -r 24 -loop 1 -i first_frame.png -r 24 -filter_complex "[1:v][0:v]blend=all_expr='A*(if(gte(T,1),1,T/1))+B*(1-(if(gte(T,1),1,T/1)))'" -t 2 fade.mp4
I then wanted to simply concatenate
fade.mp4
andvideo.mp4
to produce the desired result. I created a filemylist.txt
with the following contents :file 'fade.mp4'
file 'video.mp4'Then I issued the following command to
ffmpeg
:ffmpeg -f concat -i mylist.txt -c copy out.mp4
Unfortunately, this produced a lot of warnings of the following form :
[concat @ 00000000003580e0] Invalid stream index 1:01:24.05 bitrate= 136.3kbits/s
The resulting video
out.mp4
does correctly start withfade.mp4
, but unfortunately continues with completely random colour patterns when it comes to playingvideo.mp4
.File information for
video.mp4
:- Stream 0 :
- Type : Video
- Codec : H264 - MPEG-4 AVC (part10) (avc1)
- Resolution : 800x600
- Frame rate : 24
- Decoded format : Planar 4:2:0 YUV
- Stream 1 :
- Type : Audio
- Codec : MPEG Audio layer 1/2/3 (mpga)
- Channels : Mono
- Sample rate : 16000 Hz
- Bitrate : 24 kb/s
File information for
cover.png
:- Resolution : 800x600
Links to files :
video.mp4
: https://www.dropbox.com/s/ci5wlz7abn232go/video.mp4cover.png
: https://www.dropbox.com/s/8eeon1j213s6l5x/cover.pngfirst_frame.mp4
: https://www.dropbox.com/s/hrxzcdjki0b9xqt/first_frame.pngfade.mp4
: https://www.dropbox.com/s/ohuf98xn3gmkniq/fade.mp4mylist.txt
: https://www.dropbox.com/s/kjqnzsa50uslqcr/mylist.txtout.mp4
: https://www.dropbox.com/s/0h27z7ahjg3pbbw/out.mp4
- Stream 0 :