
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (36)
-
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" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (5773)
-
Web audio stream
21 février 2013, par user658091What's a good solution for web audio streaming ?
I've read about Flash Media Server, but that's a little too expensive right now, it seems easier than other solutions but can't afford it.
There is FFmpeg, FFserver, Icecast and SSH among the popular.
What I want is an easy solution for the user, which I was thinking something with flash. Load up FFmpeg/FFserver or Icecast as server stream and read that stream with a flash player inside the webpage. (I don't want to force users to download VLC or winamp)
I'm not sure if I'm going the right way.
-
Thumbnail from Video VLC VS FFMPEG
28 août 2013, par Flood GravemindI am uploading videos to SQL SERVER SQL database using MVC. So far I can programmatically download unprocessed videos to my Computer process them eg convert to desired format/generate thumbnails/ etc etc and reupload the videos. I am using
VLC Command Line
[I know this might get me thumbs down but hey it works.] and a custom program. I read a lot about FFMPEG but most examples are inPHP
and I am yet to come across any MVC example. I am thinking of transitioning toFFMPEG
but want to ask people if the right place forFFMPEG
is on the SERVER or on a PC ? And can you point me to any examples/tutorials ofFFMPEG
inMVC/ASP
. -
Convert videos into images specifying frame per seconds with ffmpeg
27 février 2018, par jameshwart lopezI have a 19 seconds of video and i want to extract frame at 30 frame per seconds. So I checked on the net how to do it but I am thinking that the results are inaccurate.
ffmpeg -i "the video.mp4" -vf fps=30 frames/frame_%04d.png -hide_banner
"the video.mp4" is 19 seconds in lenght so 30 * 19 = 570 but executing the command above results into 584 frames which should be 570 frames.
Can anyone help me with this ?