Recherche avancée

Médias (91)

Autres articles (37)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5730)

  • ffv1dec : set f->state_transition for default range coder table

    18 février, par Lynne
    ffv1dec : set f->state_transition for default range coder table
    

    The table is only set when f->ac is set to CUSTOM. Setting it
    for default range coder tables simplifies hardware accelerator code.

    • [DH] libavcodec/ffv1_parse.c
  • lavc/libopenh264 : Support full range videos in transcoding

    18 avril 2023, par Jun Zhao
    lavc/libopenh264 : Support full range videos in transcoding
    

    Support full range videos when transcoding, enabled the
    YUVJ420P to avoid auto scale from YUVJ420P to YUV420P

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavcodec/libopenh264enc.c
  • Range input breaks ffmpeg when seeking in Chromium

    14 janvier, par Tania Rascia

    I'm getting the following error erratically when I seek with the range input in a React app, which renders the input unusable until refresh :

    &#xA;

    PIPELINE_ERROR_READ: FFmpegDemuxer: demuxer seek failed

    &#xA;

    The only occurrence of this error I can find online is in the Chromium source code. <— linked file goes directly to the line where the error exists.

    &#xA;

    I can't replicate the error in Firefox.

    &#xA;

    &#xA;

    &#xA;

    Nothing out of the ordinary is going on with the input.

    &#xA;

    const handleScrub = (event) => {&#xA;  const newTime = event.target.valueAsNumber&#xA;&#xA;  setProgress(newTime)&#xA;  audioRef.current.currentTime = newTime&#xA;}&#xA;

    &#xA;

    It happens if you click around really fast on the range. Here is an example of the source code, but the error doesn't happen with an .ogg file, only a signed .flac file.

    &#xA;