
Recherche avancée
Autres articles (78)
-
Gestion générale des documents
13 mai 2011, parMé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, parComment 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, parCette 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 -
Symbol not found : _avpriv_ac3_channel_layout_tab
21 juillet 2023, par Denis Gottardelloafter having built a software that uses ffmpeg in a Mac, when I run the program I obtain the error :


Symbol not found : _avpriv_ac3_channel_layout_tab


referenced by libavformat.58.dylib etc


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


-
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 LasheenI know this is s very long and specific question but it can be broken down to these points :


- 

- How to add a text of song name on video
- How to scroll in a specific area not from the beginning of the video to the end
- How to stream a looping video and loop through multiple audio files to youtube/twitch.








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


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


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


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='257-t*257*0.04':eof_action=endall[fg];[0:v][fg]overlay=x=360:y=55:eof_action=endall" -t 50 output.mp4