Advanced search

Medias (0)

Tag: - Tags -/presse-papier

No media matches your criterion on the site.

Other articles (34)

  • Creating farms of unique websites

    13 April 2011, by

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

On other websites (6185)

  • msrle: Use FFABS to determine the frame size in msrle_decode_pal4

    25 May 2015, by Luca Barbato
    msrle: Use FFABS to determine the frame size in msrle_decode_pal4
    

    As done in msrle_decode_8_16_24_32.

    Bug-Id: CVE-2015-3395
    CC: libav-stable@libav.org

    • [DBH] libavcodec/msrledec.c
  • How Can I Determine the Correct Order to Merge .exo Files into a Single File Using ffmpeg?

    13 August 2024, by Hiển Hồ

    I need to merge several .exo files collected from an Android app into a single .exo file. You can find the files here: Google Drive link.

    


    I'm planning to use ffmpeg for this task, but I'm unsure of the correct sequence for combining the files. I initially thought the sequence was based on the first number in the file names, but that doesn't seem to be the case.

    


    Can anyone provide advice on how to determine the proper order for merging these files?

    


  • Using FFprobe to determine if a video uses variable frame rate [closed]

    8 March 2024, by Marco Mayer

    What is the recommended approach to determine with ffprobe, if a given video file is containing a variable frame rate track or not. Using metadata from ffprobe I fetched those values e.g.:

    


    avg_frame_rate = 384000/43607 // ~ 8.80
r_frame_rate = 30/1  // = 30.00


    


    How to determine if variable frame rate is used?
Use the difference (r_frame_rate - avg_frame_rate) > 1 e.g. and the denominator in avg_frame_rate is not equal 1 as condition?