Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (78)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

Sur d’autres sites (8124)

  • avcodec/h264_parser : Rename close()

    28 janvier 2015, par Michael Niedermayer
    avcodec/h264_parser : Rename close()
    

    This avoids a potential conflict with the equally named function for closing files
    It also could reduce confusion in debugger backtraces

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_parser.c
  • Symbol not found : _avpriv_ac3_channel_layout_tab

    21 juillet 2023, par Denis Gottardello

    after having built a software that uses ffmpeg in a Mac, when I run the program I obtain the error :

    &#xA;

    Symbol not found : _avpriv_ac3_channel_layout_tab

    &#xA;

    referenced by libavformat.58.dylib etc

    &#xA;

    Which is the missing library ? Is it a problem related to ffmpeg build from source ?

    &#xA;

  • How to add a scrolling text of the audio file song name on a sepecific part of a video and stream it to youtube using ffmpeg

    5 novembre 2022, par Youssef Lasheen

    I know this is s very long and specific question but it can be broken down to these points :

    &#xA;

      &#xA;
    • How to add a text of song name on video
    • &#xA;

    • How to scroll in a specific area not from the beginning of the video to the end
    • &#xA;

    • How to stream a looping video and loop through multiple audio files to youtube/twitch.
    • &#xA;

    &#xA;

    I kinda got the third point but i think its not an elegant solution

    &#xA;

    ffmpeg -re -stream_loop -1 -i back.gif -safe 0 -i mylist.txt -c copy -map 0:v:0 -map 1:a:0 -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k \ -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \ -ar 44100  -f flv rtmp://live.twitch.tv/app/$key

    &#xA;

    I also found this script that adds a scrolling image (input.jpg) to specific aree of a video but i coudlnt integrate it with the script above

    &#xA;

    ffmpeg -y -ignore_loop 0 -r 25 -i back.gif -loop 1 -r 25 -i input.jpg -filter_complex "[0:v]crop=270:257:360:55[c0];[c0][1:v]overlay=y=&#x27;257-t*257*0.04&#x27;:eof_action=endall[fg];[0:v][fg]overlay=x=360:y=55:eof_action=endall" -t 50 output.mp4

    &#xA;