
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6482)
-
rtmpproto : Pass the ’live’ parameter in the right unit
3 octobre 2013, par Martin Storsjörtmpproto : Pass the ’live’ parameter in the right unit
The current magic numbers passed are values in seconds, while the
parameter itself should be passed over the wire in milliseconds.This makes (some/all ?) live streams from Red5 work correctly, that
previously returned StreamNotFound even with "-rtmp_live live". After
this commit, the default ’any’ also works on these streams.Signed-off-by : Martin Storsjö <martin@martin.st>
-
How to pass input (Feeds) from camera to ffmpeg for live streaming
1er janvier 2017, par A SahraI want to stream video live that’s captured via getUserMedia and pass it to ffmpeg as an Input or feed to make it live for other users on my website.
How would i get the Video as video4linux2 here ?
$ffmpeg -f video4linux2 -i /dev/video0
I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.
-
ffmpeg command for php not working on live server
17 septembre 2022, par AnonymousI am generating thumbnail from video while uploading and I have installed ffmpeg on local but in live server ffmpeg is not installed and hosting provider asking extra charges to install it, so i have kept ffmpeg directory which i copied from local machine and placed to live server and provided live server path and try to call script but it is not generating thumbnail



$ffmpeg = 'https://example.com/ffmpeg/bin/ffmpeg.exe';
 $video_temp_path = $_FILES['upload_file']['tmp_name']; 
 $video_title = $_FILES['upload_video']['name'];


 $image = 'upload/' . $video_title . uniqid().'.jpg';
//time to take screenshot at
 $interval = 5;
//screenshot size
 $size = '320x240';
//ffmpeg command
 $command = $ffmpeg.' -i '.$video_temp_path.' -deinterlace -an -ss '.$interval.' -f mjpeg -t 1 -r 1 -y -s '.$size.' '.$image.' 2>&1';

 exec($command, $array);