Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (25)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (5011)

  • avcodec/cuviddec : Add support for decoding HEVC 4:4:4 content

    7 octobre 2018, par Philip Langdale
    avcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
    

    This is the equivalent change for cuviddec after the previous change
    for nvdec. I made similar changes to the copying routines to handle
    pixel formats in a more generic way.

    Note that unlike with nvdec, there is no confusion about the ability
    of a codec to output 444 formats. This is because the cuvid parser is
    used, meaning that 444 JPEG content is still indicated as using a 420
    output format.

    • [DH] libavcodec/cuviddec.c
  • Slicing video on several short clips of different lengths in one go

    1er décembre 2019, par Igniter

    I’ve got time codes using which I want to slice a short MP4 video (average length 5-7 minutes)

    [ 0, 15, 35, 52, 142, 215, ...] // time codes in seconds

    Usually there are 5-7 time codes meaning that I need to create 5-7 clips out of my initial video
    The fist clip is from start to 15 sec, the second one is from 15 sec to 35 sec, 35-52, etc.

    It’s trivial operation in Bash but I’m using ffmpeg on NodeJS and I’d like to do it without iteration in one go

    // Slicing a single clip
    ffmpeg -i input.mp4 -ss 0 -to 15 -c copy clip-01.mp4

    // Same command in NodeJS
    ffmpeg(`/tmp/${id}/input.mp4`)
     .renice(5)
     .outputOptions([
       '-ss 0',
       '-to 15',
       '-c copy'
     ])
     .on('end', () => {})
     .on('error', (e, stdout, stderr) => {})
     .save(`/tmp/${id}/clip-01.mp4`);

    No need for re-encoding, no need for precise timestamps (1 second out of sync is OK)
    Any thoughts or ideas would be greatly appreciated !

  • Reject multiple headers of the same type.

    7 janvier 2015, par Tim Terriberry
    Reject multiple headers of the same type.
    

    A common application pattern is to call vorbis_synthesis_headerin()
    and count how many times it succeeds.
    If you feed it multiple valid comment headers, they will all
    succeed, meaning you can be fooled into think you have a valid
    Vorbis file despite never seeing a setup header.
    This patch makes libvorbis reject multiple headers of the same type,
    preventing this from occurring.

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19426 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/info.c