
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (77)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (10755)
-
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


-
How to install ffmpeg and convert videos to mp4 in PHP ?
21 octobre 2018, par loot vergeI downloaded the latest version of ffmpeg.exe. How can I use it in order to convert videos to mp4 using PHP script and Do I need to install the ffmpeg.exe in order for me to use it if so, how can I install it properly ? I am using the latest version XAMPP. I have seen many sites with tutorial but none of the have the proper information to install and use ffmpeg. I hope you guys can help me. I tried to copy the ffmpeg.exe in the folder of my site and tried the code below I am getting an error
if(exec("ffmpeg.exe")){
echo "ok";
}
else {
echo "error";
} -
Adding Audio to an existing Video [on hold]
12 mars 2019, par romaI am trying to add a new audio to an existing video in my Android app. i have used FFMPEG but it takes time.Even i tried with MP4 Parser but still didn’t work.
FFMPEG command used is
val cmd = arrayOf("-i", video !!.path, "-i", audio !!.path, "-c:v", "copy", "-c:a", "aac", "-strict", "experimental", "-map", "0:v:0", "-map", "1:a:0", "-shortest", outputLocation.path)For example if i have a 30 seconds video, to add a new audio FFMPEG takes 30 seconds.(Same as duration of video) but i still want it to be fast enough so that it completes this task of adding audio to video in just 4 or 5 seconds.
If you see in TikTok App it take takes fraction of seconds to add a new audio to an existing video. Can you guys help me or atleast let me know which library or framework or API’s i should use in android to make this task faster enough.