
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (63)
-
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. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (14791)
-
Nodebots Day Sydney 2014 (take 2)
25 juillet 2014, par silviaNodebots Day Sydney 2014 (take 2)
Category : Array
Uploaded by : Silvia Pfeiffer
Hosted : youtube -
What is the point of encrypting HLS files ?
29 janvier 2016, par APITCI am currently working on a project of videos on demand where I convert videos to HLS using FFMPEG.
Videos are publicly hosted on AWS S3 and there is an API giving the URL of the HLS playlist.
Now, I was looking at encrypting HLS files with AES-128 so that people can’t download and watch the video offline.
I found the procedure which consists in hosting the key online and using that key while converting the video to encrypt the segments.The URL of the key is written in the HLS playlist, and the file is publicly available online.
So anyone has access to the encryption key.
I don’t understand what is the point of encrypting the segments if anyone has access to the key.
Can someone enlighten me ? I know I must be missing something. Thanks !
-
ffmpeg splits video with differents segments size
22 mai 2018, par Rafael Limaim trying to split a video in segments with same lenght using ffmpeg
ffmpeg -y -i teste.mp4 -map 0 -segment_time 10 -f segment -c:v libx264 -preset veryfast -crf 24 -tune film -vf "drawtext=text='teste':start_number=0:x=0:y=0" -an teste\out%d.mp4
the input file is 3minutes
in the output folder i get several files each have a duration between 8 and 13 seconds.
during the process i get many messages like
Past duration 0.994987 too large
Past duration 0.998329 too large
Past duration 0.995995 too large
Past duration 0.997993 too large
Past duration 0.998665 too large
Past duration 0.999321 too largealso the output file are not printing the "teste" drawtext filter...
does anyone know what is the problem ?
how can a really force ffmpeg to split 10 seconds segment (i can accept 9 or 8 seconds segments as an "error margin" but get 13 seconds segments asking for 10 is something really wrong to me)