Recherche avancée

Médias (91)

Autres articles (48)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7181)

  • rtsp : Don’t warn about unparsed time ranges

    22 avril 2015, par Martin Storsjö
    rtsp : Don’t warn about unparsed time ranges
    

    This removes the error logging added in 4e54432164.

    This avoids warnings about "Invalid interval start specification ’now’"
    for live rtsp streams.

    We only try to parse some of the many valid values for time ranges
    in RTSP - the other ones are fully valid but not interesting for the
    use case in rtsp.c, so we shouldn’t warn about them.

    (Parsing the time ranges is needed to allow seeking, but e.g. setting
    the current realtime clock for the start time doesn’t make sense.
    av_parse_time has got a different mode for parsing absolute times
    as well, which can handle the special case "now", but that doesn’t
    make much sense for this particular use in rtsp.c.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtsp.c
  • How do I join multiple glob inputs into a time lapse with ffmpeg ?

    14 octobre 2019, par jtanman

    I’m trying to combine image files from multiple directories into one combined time lapse using ffmpeg, but when running this code, only the first directory is used in the time lapse. How do I combine multiple glob inputs using ffmpeg ?

    ffmpeg -pattern_type glob -i "Time\ Lapse\ 11/*.JPG" \
    -pattern_type glob -i "Burst\ Sequence\ 5/*.JPG" \
    -pattern_type glob -i "Burst\ Sequence\ 6/*.JPG" \
    -r 30 -c:v libx264 -crf 23 -preset fast -pix_fmt yuv420p tl11_combined.mp4

    I’ve tried using glob sequence which didn’t do anything, and I’ve tried various concat methods using a text file including directory names, but haven’t found the correct format so far. Thanks !

  • Time Overlay on RTMP Video Streaming Using FFMPEG

    7 août 2015, par Dipak D Desai

    I have used following command line to stream video and overlay the time and date on video.

     raspivid -t 0 -w $3  -h $4 -fps 15 -b 500000 -o - | ffmpeg -an -i -  -r 15 -vf drawtext="fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf: text='%m/%d/%y \%T ':fontcolor=red@1.0: fontsize=15: x=20: y=170" -vcodec copy -tune zerolatency -b:v 200k -preset fast -crf 30 -maxrate 300k -bufsize 500k -f flv -metadata streamName=$2 $rtmpurl &amp;

    I am able to stream video using above command but not get time and date text overlay on video.

    If any one have idea let me guide.