
Recherche avancée
Autres articles (23)
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (5374)
-
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.


-
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 ?
-
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