Recherche avancée

Médias (91)

Autres articles (94)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (12000)

  • 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.

  • 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 !

  • 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 !