Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (65)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • 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 ;

Sur d’autres sites (7992)

  • vp9 : set color range to MPEG for intraonly profile 0

    19 août 2017, par James Zern
    vp9 : set color range to MPEG for intraonly profile 0
    

    this is undocumented in the vp9 bitstream and decoding specification
    doc, but matches libvpx

    Reviewed-by : "Ronald S. Bultje" <rsbultje@gmail.com>
    Signed-off-by : James Zern <jzern@google.com>

    • [DH] libavcodec/vp9.c
  • ffmpeg output file the same length as source files

    29 mars 2020, par b1nkh4x0r

    I want to create a mixdown that will be the exact same length as the two files that I’m overlaying.

    I’ve got an instrumental (accompaniment.mp3) and vocal (vocals.mp3) file.

    accompaniment.mp3 file is duration=**178.863600**
    vocals.mp3        file duration=**178.863600**

    When I successfully create a mixdown of the two audio files into one (mixture.mp3) the output file is longer.

    ffmpeg -i accompaniment.mp3 -i vocals.mp3 -filter_complex amerge=inputs=2 -ac 2 mixture.mp3
    mixture.mp3       file duration=**178.886531**

    How can I create a mixdown that is the exact same length as the source files ?

  • FFmpeg make video from images skip middle or rear range

    11 juin 2020, par user13720066

    From FFmpeg Wikibook we can skip the initial range of the images using -start_number

    &#xA;&#xA;

     ffmpeg -start_number 100 -i image-%03d.png video.webm&#xA;

    &#xA;&#xA;

    But how can we skip the rear part instead ?

    &#xA;