
Recherche avancée
Autres articles (28)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (4113)
-
FFMPEG Installation on cPanel
22 août 2020, par user1426583I have installed the cumulus video script on cPanel, but now am unable to upload videos. 
This is the error I am receiving :





The following errors were found. Please correct them and try again.

 

- 

- Invalid path to FFMPEG







I have uploaded "ffmpeginstaller.7.4.tar.gz" to the public root of my domain, and have unzipped the files. However it still gives the error of invalid path to FFMPEG.



I have tried putting the directory of "adtube.run-time.co.za/ffmpeginstaller.7.4.tar.gz" as the FFMPEG path in the cumulus script admin panel settings, but still no luck.



This is my website.



Please could someone point me in the right direction of what I am doing wrong ?


-
ffmpeg output seeking not accurate even after -i [closed]
3 septembre 2023, par hl037_In the documentation of ffmpeg, it is stated that if
-ss
is passed after-i
, then it is frame accurate (Other questions are for-ss
before-i
).

Here is my command :


ffmpeg -i vid.mkv -ss 53 -codec copy test.mkv -y 



However, it is still not accurate, and seems to jump to the nearest keyframe. Am i missing something ?


Note : the problem only occurs when the video steam is copied. If reencoded or discarded, it works as expected


Note2 (As I am doing other tries) : There are also strange things with audio :


ffmpeg -i vid.mkv -ss 53 -codec copy test1.mkv -y 
ffmpeg -i vid.mkv -ss 54 -codec copy test2.mkv -y 
ffmpeg -i test1.mkv -vn -c:a copy test1a.mkv -y
ffmpeg -i test2.mkv -vn -c:a copy test2a.mkv -y



- 

- test1.mkv is reported to be the right lenght, but the first frame correspond to the frame at 0:50 in original (end is good)
- test2.mkv is reported to be the right lenght, but the first frame correspond to the frame at 0:55 in original (end is good)
- test1a.mkv is the expected audio (starts at 0:53 of the original)
- test2a.mkv is the expected audio (starts at 0:54 of the original)










-
FFmpeg - Cannot convert MP4 to Webm in windows [closed]
16 février 2021, par QI JINI need convert MP4 to webm with ffmpeg. So, i use :


ffmpeg -i D:\vedio_tool\files\111\Test_091118_1080p.mp4 -vf scale=640x360 -b:v 360k -minrate 180k -maxrate 540k -bufsize 540k -tile-columns 2 -g 25.0 -quality good -crf 32 -vcodec libvpx-vp9 -acodec libvorbis -threads 2 -pass 1 -f mp4 -y NUL && ffmpeg -i D:\vedio_tool\files\111\Test_091118_1080p.mp4 -vf scale=640x360 -b:v 360k -minrate 180k -maxrate 540k -bufsize 540k -tile-columns 2 -g 25.0 -quality good -crf 32 -vcodec libvpx-vp9 -acodec libvorbis -threads 2 -pass 2 -y D:\vedio_tool\work\tmp\Test_091118_1080p_640x360.webm



But the conversion fails。