
Recherche avancée
Autres articles (62)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7128)
-
Playing ffmpeg converted video on Google slides
1er avril 2019, par user1056585I have a PNG image and an MP3 audio file. I’d like to create a video with a still image and use it in a Google slides presentation. From Google’s documentation, these formats (and codecs) are supported : https://support.google.com/drive/answer/2423694?hl=en&co=GENIE.Platform=Desktop
1) FFMPEG is the easiest tool I can find to make a video from image + audio. But if you have other options, please suggest.
2) I tried a couple commands :## Command 1
ffmpeg -i image.png -i audio.mp3 -acodec mp3 -vcodec flv1 video9.flv
## Command 2
ffmpeg -i image.png -i audio.mp3 -acodec aac -vcodec mpeg4 video7.mov
## Command 3
ffmpeg -i image.png -i audio.mp3 -vcodec wmv1 final14.wmvBut all of these display the error
Video cannot be played
in Google slides. When I try to play them in Google drive, I get the errorUnable to process this video
.Any thoughts on how I can produce a video file that’ll play in Google slides ?
-
Revision 3810 : On redirige vers la même page au changement de logo en lançant un calcul ...
18 août 2010, par kent1 — LogOn redirige vers la même page au changement de logo en lançant un calcul permettant d’afficher le logo correctement
-
FFMPEG : How to add transparency to watermark logo ? Getting error : "Filter scale2ref has an unconnected output"
12 septembre 2023, par DannyHey guys I am new to Ffmpeg, I want to resize a watermark logo according to the video size and add transparency to it. The code I have is not working as expected.


This is the code


ffmpeg -i $initialFilePath -i $assetLogoFilePath -y -filter_complex '[1][0]scale2ref=w=oh*mdar:h=ih*0.03[logo][video];[1]format=rgba,colorchannelmixer=aa=0.5[logo];[video][logo]overlay=W-w-5:H-h-5' -c:a copy $temporaryDirectoryPath/$finalVideoPath"



I am getting this error
Filter scale2ref has an unconnected output
.

Please do help. Thanks