
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 (94)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (12191)
-
FFMPEG audio not working when adding watermark
19 novembre 2013, par Anisha ViratI can successfully add watermark to mp4 video , But Audio is not working in new mp4.please help me out.And also please tell me is there way to compress a file during this conversion..60mb file is converted to 110 mb file while adding watermark.
print exec('/usr/local/bin/ffmpeg -y -i video.mp4 -vf "movie=hi.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h-10 [out]" video1.mp4');
-
ffmpeg watermark to mp4
20 octobre 2013, par user2899426Trying to add a png graphic as watermark to an existing mp4 video with audio.
But each time I produce an ouputfile there is no audio included / encoded ?
For testing pupose i only want a small 30 second clipffmpeg -t 0:0:30.0 -i 'input.mp4' -i 'logo.png' -filter_complex '[0:v][1:v]overlay[out]' -map '[out]' -b:v 5842k -c:a copy out.mp4
have managed to extract audio to seperate mp3 file to check codec works
FYI built ffmpeg from gitclone
Thanks this is driving me nuts. -
Adding watermark to a video by using ffmpeg in php
16 mai 2016, par Surya PeddadaI created a video with group of images and mp3.
But i want to add a watermark text to that video .i am using the below code to add the text.exec('/usr/local/bin/ffmpeg -y -i output.mov -acodec libmp3lame -vcodec msmpeg4 \
-b:a 192k -b:v 1000k -ar 44100 \
-vf "drawtext=text=string1 string2 string3 string4 string5 string6 string7 :expansion=normal:fontfile=/usr/bin/DejaVuSerif-BoldItalic-webfont.ttf: y=0:x=h-(2*lh)-n: fontcolor=white: fontsize=40: box=1: boxcolor=0x00000000@1" \
-an IMG_0696.avi');The issue with this is that the video file is creating with zero size.
Can any one help me please.
Or else Suggest me any other command to add watermark text to video.
Thank you in advance...