
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (84)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (9814)
-
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 ?


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


-
aacenc_tns : redo coefficient quantization and decision making
12 septembre 2015, par Rostislav Pehlivanovaacenc_tns : redo coefficient quantization and decision making
This finally (and again) gets rid of basically everything the
specifications say about how TNS should be done. The main
problem used to be that a single filter was used for all
coefficients which despite being explicitly recommended by
the specifications usually sounds wrong, therefore it’s
a corner case in the current TNS implementation.This commit also changes the coefficient bit size, as apparently
it’s better to use lower precision in case the windows are eight
short. This is apparently what fdk_aac uses, looking at the bit
stream and makes sense. Also the order when 8 SHORT windows happen
is important as 7 was too much and according to PSNR was worse
while 5 is just about correct.Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>