Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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" (...)

Sur d’autres sites (12119)

  • Save http stream video android

    11 novembre 2013, par ChebTS

    For one of my android projects I need to implement saving of video from HTTP stream (right now I am just show live stream video to user).

    I google that problem and find some solution, I can use FFmpeg. But FFmpeg is c++ library.

    Is there are some easy way to save video from HTTP stream ?

  • FFMPEG real-time buffer full frame dropped

    27 janvier 2015, par Burgaz

    I’m using FFMPEG on windows with direct show.
    I’m streaming RTMP (command below) and i need very low latency.
    Once run I get the following errors : [dshow @ 024ce800] real-time buffer 204% full ! frame dropped !

    ffmpeg -threads 6 -f dshow -i video=UScreenCapture -s 1920x1080 -an -vco
    dec libx264 -x264opts keyint=25:min-keyint=20 -b:v 1024k -preset ultrafast -tune zerolatency -crf 22 -r 10 -pix_fmt yuv420p -f flv rtmp ://server...

    Do you have an idea how to handle this kind of error ?

    Thanks
    Ronen

  • ffmpeg - slideshow from set of images ignoring first image

    24 novembre 2013, par Vishnu

    I can create slideshow with below command

    ffmpeg -y -f image2 -r 1/15 -i image%d.jpeg -y -r 45 video.mp4

    Video is created successfully ,, but its ignoring the 1st image..

    for example in current folder i have

    image1.jpeg
    image2.jpeg
    image3.jpeg

    but slide show is created with image2.jpeg and image3.jpeg only..(i.e 30 second video with 2 image is created..but i expected 45 second video with 3 images displaying 15 sec per image)