Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

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 (16547)

  • The bottom of video decoded by ffmpeg library is not good

    29 février 2020, par Mr. Jang

    I made a MFC program that plays a video stream.
    The video stream comes from RTP and codec is H.264.
    I used ffmpeg library.
    My problem is the bottom of my video play is not good.
    Not good means it has blur.
    The resolution of the video is 1920×1200.
    I opened H.264 codec using avcodec_find_decoder(AV_CODEC_ID_H264) and didn’t set any option.
    What should I do to solve this problem ?
    Thank you in advance !

  • Fastest way to create long video from 1 image with ffmpeg

    12 février 2015, par johnvantes

    What is the fastest way to create a video with long duration (1 hour), from a single image ?
    Here is what I have now :

    ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4

    But it’s taking too long in my case, around 40 minutes. The image size I am using is 800KB.

    Many many thanks in advance !

  • DVD Protection Test on Batch on MacOSX [closed]

    30 mars 2014, par jonhatan smith

    I work on Mac and PC so this question is for both OS.
    I'm new to batch scripting and I'm wondering if there is any way to test if a DVD (with chapters and titles and videos) is protected or not.
    What I mean by protected, is any kind of protection that could alterate the ripping of my DVD.
    After testing if the DVD is protected, the script should put the result into a variable, to later perform another operation.

    the script process could look like that :

    Is the Drive X contains A DVD?

       if No--->Pause;
       else if Yes--->Continue;
       else error;

       Is the DVD Protected?
           if No--->open HandBrake.app;
           else if Yes--->open program.app;
           else error;

    Thank you in advance for any replies.