
Recherche avancée
Autres articles (35)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5469)
-
How to download videos from m3u8 that has sample-aes encryption [closed]
8 mai 2021, par Rajat BishtI am trying to download my online lecture from m3u8 link but it shows "ffmpeg do not support sample-aes yet".
Link of lecture : https://pw.pc.cdn.bitgravity.com/b7826d86-612d-4ef2-b17c-cc4f91d9584c/master.m3u8 .
It is sample-aes-ctr encrypted. Also I know python a little bit so it would be better if I could download it using python. Also I have link to mpd file : https://pw.pc.cdn.bitgravity.com/b7826d86-612d-4ef2-b17c-cc4f91d9584c/master.mpd.
Please can anyone tell any module or something which can help in downloading it.....
Thanks in advance.


-
how download m3u8 in chunks using ffmpeg ?
9 mai 2020, par relidonI'm trying to convert
m3u8
tomp4
and I found the following method that works


ffmpeg -i 'https://....m3u8' -bsf:a aac_adtstoasc \
 -vcodec copy -c copy -crf 50 output.mp4




The end result, however, is too big for me to drag into an external hard drive.



I also tried writing directly to the hard drive
/Volumes/2TR/output.mp4
but the end result is the same - the file is too big, the operation fails.


I noticed that if I terminate the operation at any point, the
output.mp4
file works perfectly, but that it's not the full video (perfect). If the video is one hour and I just want 30 minutes of it I can terminate theffmpeg
operation at that point.


So I'm wondering whether there's a way for
ffmpeg
to download the contents in two parts,output-part1.mp4
andoutput-part2.mp4
?

-
Opencv VideoCapture always returns false on Heroku
27 juin 2022, par Dacian MujdarI'm using the following code to open a video stream :


import cv2
video = cv2.VideoCapture()
video.open("some_m3u8_link")
success, image = video.read()



However, even if the code works as intended locally, on Heroku
success
is always false.

I'm using cedar-14 stack with the following buildpacks :




heroku/python


https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git




(I tried several buildpack options for ffmpeg)


Running
ffmpeg --version
on heroku instance will returnffmpeg version 4.0-static https://johnvansickle.com/ffmpeg/


Is there any setting/configuration I missed in order to make it work on deployment ? Thank you !


Later edit : I tried several links for "some_m3u8_link" including from twitch and other streaming services (including traffic streaming li
An example for reproducing :


python -c "import cv2; video=cv2.VideoCapture(); video.open('https://hddn01.skylinewebcams.com/live.m3u8?a=5tm6kfqrhqbpblan9j5d4bmua4'); success, image = video.read(); print(success)"



Returns True on local machine and False on Heroku.


(the link is taken from here)