Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (5721)

  • A PHP Error was encountered Severity : Core Warning Message : Module 'ffmpeg' already loaded Filename : Unknown Line Number : 0 Backtrace

    3 septembre 2016, par Sumon

    Getting the following error in live

    "
    A PHP Error was encountered
    Severity : Core Warning
    Message : Module ’ffmpeg’ already loaded
    Filename : Unknown Line Number : 0
    Backtrace :".

    But i did not receive this error in local host. I am using codeigniter 3. Need Some help..

  • patcheck : Fix false detection of ’mergeable calls’ when line is removed

    22 novembre 2015, par Hagen Schmidt
    patcheck : Fix false detection of ’mergeable calls’ when line is removed
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/patcheck
  • Ffmpeg cmd line for stereo(L+R) to Mono(L)

    16 janvier 2014, par Eric

    I use the following command to extract video parts of an '.MTS' record (video).

    ffmpeg -i 00402.MTS -s 1280x720 -r 25 -ss 0:00:05.38608 -vcodec libxvid -qscale:v 2 -acodec ac3 -ar 48000 -ab 256k -t 0:00:06.613917 m001_mono.avi

    The audio stream is stereo but the right channel only recorded noise.
    Here are the input informations :

    Stream #0.0[0x1011]: Video: h264 (High), yuv420p, 1440x1080 [PAR 4:3 DAR 16:9], 50 fps, 50 tbr, 90k tbn, 50 tbc
    Stream #0.1[0x1100]: Audio: ac3, 48000 Hz, stereo, s16, 256 kb/s

    I would like the output's audio stream to be mono (with the original left channel only).
    I already made tests using '-ac 1' option, but in this case the two channels are merged and I lose 6dB of gain.

    What option should I use to discard right channel and output with mono audio stream ?