
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (104)
-
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" (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (11175)
-
Overlaying 2 videos using FFMPEG in Android Giving Low Resolution Video Output
7 janvier 2021, par mirza aliI'm overlaying 2 videos using below command
This command works perfectly but returns Low resolution Video output any change to this command which make my video resolution better ...!!?


"-i", FirstVideo, "-f","lavfi","-i","movie=" + SeconedVideo+ 
 
":loop=200,setpts=N/FRAME_RATE/TB","-filter_complex", 
 
"[1:v][0:v]scale2ref[ua][b];[ua]setsar=1,format=yuva444p,colorchannelmixer=aa=1[u];[b][u]overlay=1:1:shortest=1", OutputFilePath



-
converting mp4 to mp3 using ffmpeg failing
26 décembre 2014, par LiveEnim trying to convert a mp4 file into a mp3 using ffmpeg on my linux vps
Currently i have installed ffmpeg to my server and im my php code i have the below
$saved = 'videos/move1.mp4';
$out = 'videos/move1.mp3';
$ffmpeg = "ffmpeg -i ".$saved." -ar 44100 -ab 128k -ac 2 ".$out."";
$cmd = exec($ffmpeg);
if($cmd)
{
echo "success";
}
else
{
echo "failed";
}It always returns failed. can someone tell me what am i doing wrong ?
-
How do i convert videos uploaded by user to .swf ?
3 avril 2020, par Anish SilwalI am creating a website which enables to upload videos. But we know that user can upload any kind of video but the browser can't play them. So, I thought that I somehow can convert them into .swf and play them using a flash player. I tried to use ffmpeg-php but it didn't worked. my code was :



shell_exec('ffmpeg -i in.mp4 out.swf');




It does not show any error neither it returns
out.swf
.


Please ! help me.