Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (86)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (11226)

  • avfilter/framesync : add a new option to set how to sync streams based on secondary...

    2 août 2022, par James Almer
    avfilter/framesync : add a new option to set how to sync streams based on secondary input timestamps
    

    Include two values for it, a default one that sets/keeps the current behavior,
    where the frame event generated by the primary input will have a timestamp
    equal or higher than frames in secondary input, plus a new one where the
    secondary input frame will be that with the absolute closest timestamp to that
    of the frame event one.

    Addresses ticket #9689, where the new optional behavior produces better frame
    syncronization.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/framesync.c
    • [DH] libavfilter/framesync.h
  • avfilter/avfiltergraph : remove unnecessary channel layout copy

    5 août 2022, par James Almer
    avfilter/avfiltergraph : remove unnecessary channel layout copy
    

    It's not modified, so we can simply use a const pointer to it.
    Also check the return value of the other copy in the function while at it.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/avfiltergraph.c
  • How can I get metadata of playing track when I stream via ffmpeg ?

    10 juin 2022, par Viktor Kushnir

    I have one video.mp4 in loop and collection of mp3 that also plays in loop.

    &#xA;

    start.sh

    &#xA;

    #! /bin/bash&#xA;&#xA;VBR="4500k"&#xA;FPS="30"&#xA;QUAL="superfast"&#xA;&#xA;YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2/XXXX-XXXX-XXXX-XXXX-XXXX"&#xA;VIDEO_SOURCE="video.mp4"&#xA;AUDIO_ENCODER="aac"&#xA;&#xA;ffmpeg \&#xA;-stream_loop -1 \&#xA;-re \&#xA;-i "$VIDEO_SOURCE" \&#xA;-thread_queue_size 512 \&#xA;-stream_loop -1 \&#xA;-re \&#xA;-f concat -i playlist.txt \&#xA;-vf drawtext="fontfile=OpenSans.ttf:text=&#x27;Track Title&#x27;:fontsize=26:fontcolor=white:borderw=1:bordercolor=black:x=40:y=1020" \&#xA;-map 0:v:0 -map 1:a:0 \&#xA;-map_metadata:g 1:g \&#xA;-c:v libx264 -preset $QUAL -r $FPS -g $(($FPS *2)) -b:v $VBR -bufsize 3000k -maxrate $VBR \&#xA;-c:a $AUDIO_ENCODER -ar 44100 -b:a 128k -pix_fmt yuv420p \&#xA;-f flv \&#xA;-flvflags no_duration_filesize \&#xA;$YOUTUBE_URL &#xA;

    &#xA;

    I want to show in drawtext playing track metadata like title, artist...&#xA;ffmpeg show me only frame, fps, bitrate..

    &#xA;

    frame=29717 fps= 25 q=19.0 size=  420802kB time=00:19:47.80 bitrate=2902.2kbits/s speed=0.999x&#xA;

    &#xA;

    Is it posible ?&#xA;Thank you

    &#xA;