
Recherche avancée
Autres articles (94)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (15666)
-
Download HLS ( HTTP ) Stream video using python
21 juin, par LeDerpI need to download a streaming video(from a URL) using python the command line argument would be :



ffmpeg -i URL stream.mp4




I know I can use the subprocess command



subprocess.call('ffmpeg -i '+ URL +' stream.mp4', shell=True)




Is there any alternative like a API that I can use instead of using subprocess command


-
How can I use ffmpeg and youtube-dl to download the first frame of every video in a playlist ?
18 janvier, par Chi Long QuaI'm trying to download only the first frame of every video in a large playlist on YouTube. Does anybody know how I can use ffmpeg and youtube-dl to do this ?


-
Use ffmpeg to produce movie with hevc codec and alpha playable in QuickTime
6 janvier 2021, par 220284I want to produce a movie from a sequence of PNG images using ffmpeg. The resulting movie should be QuickTime compatible and is supposed to use the hevc codec with an alpha channel. Can this be done using ffmpeg ? I tried


ffmpeg -framerate 60 -i %d.png -c:v libx265 -pix_fmt yuv420p -x265-params lossless=1 -tag:v hvc1 out.mov



but the resulting movie has no alpha channel.