Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (55)

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

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

    5 septembre 2013, par

    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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8255)

  • Why are image sequences larger (in size) than the source videos ?

    2 février 2014, par steve

    When I'm using a command like this in ffmpeg (or any other program) :

    ffmpeg -i input.mp4 image%d.jpg

    The combined files size of all the images always tends to be larger than the video itself. I've tried reducing the frames per second, lower compression settings, blurs, and everything else I can find but the JPEGs always end up being larger in size (combined) afterwards.

    I'm trying to understand why this happens, and what can be done to match the size of the video. Are there other compression formats I can use besides JPEG or any settings or tricks I'm overlooking ?

    Is it even possible ?

  • Why are image sequences larger (in size) than the source videos ?

    12 mars 2023, par steve

    When I'm using a command like this in ffmpeg (or any other program) :

    



    ffmpeg -i input.mp4 image%d.jpg


    



    The combined files size of all the images always tends to be larger than the video itself. I've tried reducing the frames per second, lower compression settings, blurs, and everything else I can find but the JPEGs always end up being larger in size (combined) afterwards.

    



    I'm trying to understand why this happens, and what can be done to match the size of the video. Are there other compression formats I can use besides JPEG or any settings or tricks I'm overlooking ?

    



    Is it even possible ?

    


  • avcodec/vvcdec : return error if CTU size > 128

    23 novembre 2024, par Nuo Mi
    avcodec/vvcdec : return error if CTU size > 128
    

    The v3 spec reserves CTU size 256. Currently, we use an uint8_t* table to hold cb_width and cb_height.
    If a CTU size of 256 is not split, cb_width and cb_height will overflow to 0.
    To avoid switching to uint16_t, rejecting CTU size 256 provides a simple solution.

    • [DH] libavcodec/vvc/ps.c