
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (72)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (7734)
-
Making a simple video directly using C
13 août 2020, par thedeathstar1997I am working on an Ising Lattice simulation (2D binary image) using C and I want to generate a video of the simulation. Currently I am saving every step as a ppm image and using ffmpeg to convert the folder of images into an mp4 video. Is there any way to directly generate a video in the C code ? I know that C has a library for ffmpeg but the documentation got me very confused.


-
ffmpeg doesn't recognize the local key file for decrypting a m3u8
3 juillet 2021, par RocktOk so here is the situation.


I have a m3u8 file which is encrypted using AES-128. Using a simple python script I download the m3u8 and the key file and then serves it over the local network with the aid of SimpleHTTPServer. Then I run a separate shell script to get the m3u8 and key file from the local server and it get the job done without any problems.


Now instead of getting the files from the local server, I want to decrypt them locally from the command line. So I replaced the key path of the m3u8 from,


#EXT-X-KEY:METHOD=AES-128,URI="https://example.com/key"



to


#EXT-X-KEY:METHOD=AES-128,URI="file://local/path/to/video.key"



And when executed the following from the command line,


ffmpeg -safe 0 -protocol_whitelist file,http,https,tcp,tls,crypto -allowed_extensions ALL -i playlist.m3u8 "output.mp4"



It gives me these two errors and exits.


Unable to open key file file://local/path/to/video.key
playlist.m3u8: Invalid data found when processing input



Now my question is why ffmpeg doesn't give any errors when I serve the key file over a local server, and why things get changed when I do it this way ? Any help maybe ?


-
ffmpeg making gif from serially numbered images
30 mars 2017, par hadi kmy files are named :
file1.png
file2.png
file3.png
....
file11.png
...
file123.png
...
file200.pngnow I want to make a gif of these images. I tired with
ffmpeg -framerate 10 -pattern_type glob -i 'file*.png' -c:v libx264 -pix_fmt yuv420p growth.avi
but it does not work properly. What am i doing wrong ?