Advanced search

Medias (91)

Other articles (107)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

    5 September 2013, by

    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;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 February 2011, by

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

On other websites (10574)

  • Nomenclature #3465: Nouvelle balise : #LOGO

    26 November 2018, by jluc -

    Avec d’autres specs en plus :

    • #LOGO : à l’intérieur d’une boucle, logo de l’objet
    • #LOGO : à l’extérieur d’une boucle, logo du site.
    • #LOGO* : ajoute un lien sur l’image du logo vers l’objet éditorial
    • #LOGO** : retourne le nom du fichier de logo.
    • #LOGOright : Valeurs possibles : top left right center bottom
    • #LOGOicone : Valeurs possibles : auto icone apercu vignette
    • #LOGO200, 0 : Redimensionnement indiqué
    • #LOGO#URL : : ajoute un lien sur l’image du logo vers l’url
      *
      * Idem en spécifiant objet et id_objet
      * #LOGOrubrique, 13 : logo de la rubrique 13
      * #LOGOrubrique, #ID_SECTEUR
      * #LOGOrubrique, 13, icone
      * #LOGOrubrique, 13, 200, 0
  • avcodec/ralf: Fix undefined pointer in decode_channel()

    4 August 2019, by Michael Niedermayer
    avcodec/ralf: Fix undefined pointer in decode_channel()
    

    Fixes: 16203/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5086088934195200

    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ralf.c
  • Set audio language and subtitle language using php-ffmeg

    2 September 2020, by Kermit

    Is that possible to set a desired audio language and a subtitle language using php-ffmeg ?&#xA;Something like :

    &#xA;

    $format&#xA;->setAudioLanguage(&#x27;eng&#x27;)&#xA;->setSubtitle(&#x27;eng&#x27;);&#xA;

    &#xA;

    I tried to look into the documentation but I wasn't able to find anything about it...

    &#xA;

    My goal is to make a clip using a video containing several audio languages and subtitles, so I need to be able to choose which channel I want for my output.

    &#xA;