Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (19)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4574)

  • Value range for AVCodecContex::global_quality, ::compression_level and AVFrame::quality

    27 février 2019, par Bim

    I’m trying to compress video using different codecs (WMV, MP4, H264, VP8, VP9) using FFmpeg / libav. I’m unsure on how to set the global and per-frame quality values. Even the range of values is unclear to me. The docs are not helpful.
    Currently I’m using :

    AVCodecContex::global_quality = FF_QP2LAMBDA * quality; // no idea about range, default seems to be 0
    AVCodecContex::compression_level = 0; // There is FF_COMPRESSION_DEFAULT (-1), which seems to be the default
    AVFrame::quality = FF_LAMBDA_MAX * quality; // docs say range is [1, FF_LAMBDA_MAX], default seems to be 0

    quality is in the range [0,1], where 0 means best image quality. Only 0 seems to do anything for me and leads to ok-quality videos. All other values produce low-quality output.
    Any clarification on how to set these values is welcome.

  • Finding the length of a video in Java and ffmpeg

    17 avril 2015, par Abishek R Srikaanth

    Is there a way to find a length of a video using Java ? I understand we can make use of ffmpeg to generated thumbnails and encode videos. But can it be used to get the length of the video ?

    Thanks and Regards
    Abishek R Srikaanth

  • FFMPEG - How to trim video to length of 200 ms

    26 décembre 2018, par David C

    I am trying to trim a video with clips as short as 100 ms or 200 ms length (so I can merge them together later). They always end up at least about 1 second. I guess there is a minimum length, but i wonder if it is possible to still manage to get shorter videos.

    I have tried this on Windows with the most recent version of ffmpeg :

    ffmpeg -i video.mp4 -ss 00:00:01.700 -t 00:00:01.715 output.mp4

    I expect a video of the length of around 200 ms. Alternatively maybe there is a way to trim multiple clips and merge them directly into an output file.

    Thanks !