Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (15979)

  • avformat/mxfenc : Store locally whether DNXHD profile is interlaced

    9 novembre 2021, par Andreas Rheinhardt
    avformat/mxfenc : Store locally whether DNXHD profile is interlaced
    

    It is just a flag per supported CID. So there is no reason to use
    an avpriv function for this purpose.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/mxfenc.c
  • avcodec/mpeg12enc : Perform size/level/profile checks earlier

    6 avril 2021, par Andreas Rheinhardt
    avcodec/mpeg12enc : Perform size/level/profile checks earlier
    

    This has the advantage that one does not waste some allocations
    if one errors out because of these checks.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12enc.c
  • lossless video to h.265 - [error] : main10 profile not compatible with i422 input chroma subsampling

    24 février 2021, par spierce7

    I have a lossless .mov video and I'm trying to encode using h.265 for firetv and some other android tv devices. The spec that they support is :

    &#xA;

    Based on their native H.265 support, I'm trying to export a Main 10 Profile with level 4.1.

    &#xA;

    The command I'm running is :

    &#xA;

    ffmpeg -i 001_lossless.mov -c:v libx265 -preset slow -profile:v main10 -level:v 4.1 -c:a aac -b:a 128k output.mp4&#xA;

    &#xA;

    Which yields the following error :

    &#xA;

    x265 [error]: main10 profile not compatible with i422 input chroma subsampling.&#xA;

    &#xA;

    What is the best way to work around this ? I can request the lossless video in different formats also, but I'm not exactly sure what to ask for.

    &#xA;