Recherche avancée

Médias (91)

Autres articles (53)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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 (9884)

  • ismindex : handle time discontinuities and nonzero start time

    14 septembre 2014, par Mika Raento
    ismindex : handle time discontinuities and nonzero start time
    

    The input file may not have consistent start times, stream durations and
    chunk durations. This patch at least removes negative durations that
    make chromecast unhappy, and correctly sets starting time on chunks so
    that the split (or .ismf) outputs match the manifest.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/ismindex.c
  • How to reduce compression time and maintain quality of video at same time, FFMPEG library android

    14 septembre 2021, par Ankit Ostwal

    i am using FFMPEG library to compress video and able to achieve a normal quality also. But if i try improving the resolution, compression time increases. The output should be such where a standard video output is achieved, along with very high quality video, maintaining the aspect ratio as well. Below is the code i am using, please suggest me ways to improvise this. Help is appreciated. Thanks

    &#xA;

                    MediaModifierTypes.VIDEO_COMPRESS -> return arrayOf(&#xA;                    "-y",&#xA;                    "-i",&#xA;                    videoPath,&#xA;                    "-vf",&#xA;                    "scale=1280:-1",&#xA;                    "-vcodec",&#xA;                    "mpeg4",&#xA;                    "-b:v",&#xA;                    "2M",&#xA;                    "-b:a",&#xA;                    "48000",&#xA;                    outputFilePath&#xA;                )&#xA;

    &#xA;

  • avformat/dashenc : write a capture time Producer Reference Time element when none...

    18 février 2020, par James Almer
    avformat/dashenc : write a capture time Producer Reference Time element when none is provided by the encoder
    

    This way, the element will be present in any scenario when the write_prft option is used.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/dashenc.c