Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (36)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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, par

    Mediaspip 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 user658091

    What'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 Gravemind

    I 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 in PHP and I am yet to come across any MVC example. I am thinking of transitioning to FFMPEG but want to ask people if the right place for FFMPEG is on the SERVER or on a PC ? And can you point me to any examples/tutorials of FFMPEG in MVC/ASP.

  • Convert videos into images specifying frame per seconds with ffmpeg

    27 février 2018, par jameshwart lopez

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