Recherche avancée

Médias (91)

Autres articles (46)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (3500)

  • VB.Net Stream/Port Image To FFmpgeg using Standard Input

    31 janvier 2015, par Zakir_SZH

    hope all active member of this community are fine.
    in my project i need to convert several image to video file.
    Currently i have to first save the images to PC then use ffmpeg to read that images from the pc and convert it to movie.

    But rather than save image to pc, i want to send image directly to ffmepg using StandardInput call. Ffmped does support that. but i don’t know how to use that.

    i have search internet a lot and all i found is getting output/response from ffmpeg using standarderror as ffmepg write to standerror instead of standardouput.

    below link something similar to what i look for that that code don’t work and also that use mp3 file instead of image/graphics.

    http://tiku.io/questions/3075356/convert-wma-stream-to-mp3-stream-with-c-sharp-and-ffmpeg

    can any one help me out, how to send image from picturebox/graphics object to ffmpeg one by one ?

    thanks in advance

    best regards

  • http: Fix authentication, broken since 6a463e7fb

    13 août 2014, par Martin Storsjö
    http: Fix authentication, broken since 6a463e7fb
    

    The cur_*auth_type variables were set before the http_connect call
    prior to 6a463e7fb - their sole purpose is to record the
    authentication type used to do the latest request, since parsing
    the http response sets the new type in the auth state.

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/http.c
  • "-y" option in ffmpeg can't overwrite exist file rightly

    11 janvier 2018, par Alexander_flyer

    I want to overwrite the exists .wav file automatically

    and I found a option from the document of the ffmpeg :

    -y (global)

    Overwrite output files without asking.

    and I have a test :

    ffmpeg -i 113.wav -ar 8000 -y 113.wav

    but what I got is a .wav file with only 1 second duration, It’s 2m30s duration before !
    before
    after

    If without the "-y" option, and type "y" after the command line reminder, all is Ok

    File '113.wav' already exists. Overwrite ? [y/N] y

    I’m really confused, and waiting for your response.

    THX