Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (84)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • lavf/aviobuf : add ff_get_chomp_line

    9 avril 2018, par Jun Zhao
    lavf/aviobuf : add ff_get_chomp_line
    

    Same as ff_get_line but strip the white-space characters in the
    string tail.

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavformat/aviobuf.c
    • [DH] libavformat/internal.h
  • Reading out a parameter from ffmpeg by using bash

    20 mars 2014, par sebastian

    I am having trouble with reading out a specific parameter from FFmpeg with bash. The parameter which I want to have, looks like this :

    "FC_SOURCEFILE_MI_Audio_#1_Channel(s)"="1 channel"
    "FC_SOURCEFILE_FC_location"="/content/flowcenter/highres/dokfest/dokfestftp8/Hands_Up_to_Heaven_prores1920x1080.mov"

    and the second one is just there to confirm that it works properly

    echo test: $FC_SOURCEFILE_MI_Audio_#1_Channel(s)
    echo location: $FC_SOURCEFILE_FC_location

    the outcome looks like this :

    /home/mfc/ffmpeg/audio_pan.wav.sh: line 1: syntax error near unexpected token `(&#39;
    /home/mfc/ffmpeg/audio_pan.wav.sh: line 1: `echo test: $FC_SOURCEFILE_MI_Audio_#1_Channel(s)&#39;

    and by using the second command I get this outcome :

    test: /content/flowcenter/highres/dokfest/dokfestftp8/Hands_Up_to_Heaven_prores1920x1080.mov

    So my first guess was that my script does not like special characters and I looked up ASCII for #, (, ) telling me 35 for #, 28 for (, 29 for ) but I am not sure how to write this in my bash-file. The only thing that came to my mind was typing in "35", "28" and "29" but that did not work. What am I missing ?

  • avcodec/ass,webvttdec : fix handling of backslashes

    19 février 2024, par Oneric
    avcodec/ass,webvttdec : fix handling of backslashes
    

    Backslashes cannot be escaped by a backslash in any ASS renderer,
    but unless followed by specific characters it is just printed out.
    Insert a word-joiner character after a backslash to break up
    active sequences without changing the visual output.

    • [DH] libavcodec/ass.c
    • [DH] libavcodec/webvttdec.c