Recherche avancée

Médias (91)

Autres articles (90)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (5810)

  • avprobe : Add -show_stream_entry to get a single stream property

    24 octobre 2016, par Vittorio Giovara
    avprobe : Add -show_stream_entry to get a single stream property
    

    This is needed for improved fate testing and it is modeled after
    - show_format_entry. The main behavioral difference is that when a print
    function is called with an empty key, rather than discarding it, the
    closes key in the hierarchy is used instead.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] avprobe.c
  • FFMPEG - Drawtext or drawbox or overlay on single frame

    2 novembre 2011, par waxical

    I'm using the avfilters on FFMPEG to drawtext and drawbox. Two of the most poorly documented functions known to man.

    I'm struggling to work out how and if I can use this on a single frame. I.e. appear drawtext on frame 22.

    Current command :-

    ffmpeg -i /home/vtest/test.wmv -y -b 800000 -f flv -vcodec libx264 -vpre default -s 768x432 -g 250 -vf drawtext="fontfile=/home/Cyberbit.ttf:fontsize=24:text=testical:fontcolor=green:x=100:y=200" -qscale 8 -acodec libfaac -sn -vstats  /home/testout.flv

    Two elements mention here in the documentation are n and t - however I only seem to be able to use them in x and y. Not in text or even as other parameters.

    Any help or ffmpeg guidance would be gratefully received.

  • FFMPEG - Single video file multiple audio files stream to YouTube

    11 août 2021, par JDaza13

    Right now I have a working stream with :

    &#xA;

    ffmpeg -stream_loop -1 -re -i video/base_video_file.mp4 -loglevel warning -c:v libx264 -b:v 2M -c:a copy -strict -2 -flags &#x2B;global_header -bsf:a aac_adtstoasc -bufsize 2100k -f flv YT_URL/YT_KEY

    &#xA;

    How could I use a single file as the video source and multiple audio files as the audio source and then have it all as the stream loop ?

    &#xA;