Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4180)

  • Anomalie #3301 : Utilisatation de ?IN

    17 octobre 2014, par b b

    Ha mais non, pas la peine de tester. Je crois que tu attends l’inverse de ce que la doc annonce.

    si id_article est présent dans l’environnement et quelle que soit sa valeur :

    
    


    n’affichera que les articles dont l’id est dans la liste IN

    http://www.spip.net/fr_article4010.html#xxxx-IN-a-b-c-d------

    C’est bien id_article qui est optionnel, pas la liste des valeurs du critère IN.

  • avcodec/hevc_sei : Use get_bits_long() for time_offset_value

    19 juin 2021, par Michael Niedermayer
    avcodec/hevc_sei : Use get_bits_long() for time_offset_value
    

    Fixes : assertion failure
    Fixes : crash_1

    Found-by : Thuan Pham <tpham.unimelb@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hevc_sei.c
  • Problem updating drawtext with file using ffmpeg [duplicate]

    17 novembre 2020, par drmobbins

    I have a shell script that runs to combine a 24/7 AAC audio stream with a 720p HD picture/background and streams that output live to YouTube. This is for an internet radio station. The script works perfectly except for the drawtext option. The drawtext option references a file that is updated every 15 seconds (using Python and Cron) with the correct song metadata (from the radio automation suite) and is supposed to print the contents of the metadata file to the screen. This happens one time when the ffmpeg command is run in the script, but doesn't update after a song change.

    &#xA;

    I would assume that since the metadata file is changing every 15 seconds on the server that it would update the song details in the output video that could be seen on YouTube...but it doesn't.

    &#xA;

    #!/bin/bash&#xA;&#xA;#Quality settings&#xA;VBR="1500k"&#xA;FPS="30"&#xA;QUAL="ultrafast"&#xA;AUDIO_ENCODER="aac"&#xA;&#xA;#Youtube settings&#xA;YOUTUBE_URL=" rtmp://a.rtmp.youtube.com/live2"&#xA;YOUTUBE_KEY="xxxx-xxxx-xxxx-xxxx-xxxx"&#xA;&#xA;#Sources&#xA;VIDEO_SOURCE="bg720p.jpg"&#xA;AUDIO_SOURCE="http://stream.url"&#xA;&#xA;#Metadata settings&#xA;TRACK_METADATA=$(cat metadata.txt)&#xA;&#xA;ffmpeg \&#xA; -loop 1 \&#xA; -re \&#xA; -framerate $FPS \&#xA; -i "$VIDEO_SOURCE" \&#xA; -thread_queue_size 512 \&#xA; -i "$AUDIO_SOURCE" \&#xA; -vf "drawtext=fontfile=OpenSans-Light.ttf:text=$TRACK_METADATA:x=10:y=680:fontsize=20:fontcolor=white" \&#xA; -c:v libx264 -tune stillimage -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS *2)) -b:v $VBR \&#xA; -c:a $AUDIO_ENCODER -threads 6 -ar 44100 -b:a 64k -bufsize 512k -pix_fmt yuv420p \&#xA; -f flv $YOUTUBE_URL/$YOUTUBE_KEY&#xA;

    &#xA;

    What am I missing that will make the output continually check for file changes and use drawtext to display the contents. Thanks in advance !

    &#xA;