Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (39)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • tests/fate : force MPEG range for rawvideo tests

    12 octobre 2023, par Niklas Haas
    tests/fate : force MPEG range for rawvideo tests
    

    The input file is MPEG range, so we should also encode to MPEG range
    before comparing against it. This bug was avoided in the past because
    YUVJ inputs were automatically converted back to limited range when converting
    to a different pixfmt (in the absence of tagging). However, with proper YUV
    negotiation in place, the default behavior is to preserve the YUV range
    wherever possible. Since `rawvideo` does not signal or care about the YUV
    range, we need to explicitly request the desired output range to force a
    conversion.

    Affects all rawvideo tests, in particular vsynth and owdenoise.

    • [DH] tests/fate-run.sh
    • [DH] tests/fate/filter-video.mak
    • [DH] tests/fate/vcodec.mak
  • avcodec/scpr : check that current row is in valid range

    23 février 2017, par Paul B Mahol
    avcodec/scpr : check that current row is in valid range
    

    Stops writing out of dst array.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/scpr.c
  • Dynamic way to add length to an html5 video

    6 septembre 2013, par Eric Paulsen

    I'm looking for a way to update the video length on an HTML5 video in the client side using Javascript.

    Example : I have a video clip loaded on the page that is 30 seconds long and I want to update it on the fly to be 45 seconds long.

    I had a look at the duration property of the HTMLMediaElement, but quickly discovered that the property was read only (source : https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement). I also stumbled upon this blog post, but my ideal solution would be to have one continuous clip. I could accomplish this on the server side using a tool like FFMPEG, but I'd rather not add an increase in load time for our users.

    Any suggestions ?