Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (37)

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

  • cafenc : fill in avg. packet size later if unknown

    10 juillet 2021, par Roman Beranek
    cafenc : fill in avg. packet size later if unknown
    

    Frame size of Opus stream was previously presumed here to be 960 samples
    (20ms), however sizes of 120, 240, 480, 1920, and 2880 are also allowed.
    It can also alter on a per-packet basis and even multiple frames may be
    present in a single packet according to the specification, for the sake
    of simplicity however, let us assume that this doesn't occur.

    Because the mFramesPerPacket field, representing the number of samples
    per packet in the ffmpeg terminilogy, is the key factor in calculating
    packet durations and all that follows from that (index, bitrate, ...),
    it is crucial to get right.

    Therefore, if the packet size is not available ahead of time (as it is in
    the case of Opus), calculate an average from the stream duration once we
    know how many packets there are and update the filed in the header.

    • [DH] libavformat/cafenc.c
  • vc2enc : increase the starting value of the size scaler

    18 mars 2016, par Rostislav Pehlivanov
    vc2enc : increase the starting value of the  size scaler
    

    In some cases this caused the slice size rounding to generate invalid
    slice sizes and overwrite some slices.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/vc2enc.c
  • FFMPEG - changing pixel format from 24-bit RGB to 8-bit Grayscale only changes color, but not file size

    27 septembre 2018, par Minjun Seong

    I am using the avlib* libraries and currently using the sws_getContext function to change pixel format from RGB (AV_PIX_FMT_RGB24) to grayscale (AV_PIX_FMT_GRAY8). The expected behavior should have been that the output file size should have decreased by 3 times as we are going from 24 bit rgb to 8 bit grayscale, but it stayed the same. Furthermore, when I checked on Media-Coder to see the format, the video format was still RGB. Any ideas on why the file size didn’t change and why the file format is still RGB ?

    Note : the video DID change to black and white as expected.