
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (38)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4084)
-
how to convert mp4 to webm file using ffmpeg in php on centos
27 septembre 2021, par intrepid webi have done installation. after then i have using following code to convert mp4 to webm using ffmpeg on centos.



but it does not convert and also didn't throw any error.what is wrong with my code else am i forgot anythink in installation.



Thanks Anvanced



Webm convertion Code



ffmpeg.exe -i "blank.mp4" -acodec libvorbis -b:a 96k -ac 2 -vcodec libvpx -b:v 400k -f webm -s 384x216 "blank.webm"



-
Discord JS v13 FFmpeg not found on rootserver
10 avril 2022, par emirate.I just installed my DiscordJS Bot on my new rootserver, I copied the files 1:1 to the server and started the Bot. The Bot starts normal but when I try to execute a command where the bot joins a vc and plays audio it says :


throw new Error('FFmpeg/avconv not found!');
 ^



Error : FFmpeg/avconv not found !


Which is weird because I have ffmpeg and ffmpeg-static installed, and the same script works normally on my PC when I run it. Any ideas why ?


Edit :
The only difference between the versions on the PC and the rootserver are the Node.js versions ; PC : 16.6.0, rootserver : 17.4.0 (the rootserver is running on ubunu 11, and my PC on windows 10)


-
How to hide/disable ffmpeg erros when using OpenCV (python) ?
29 septembre 2013, par MehranI'm using OpenCV python to capture a video.
This is my codeimport cv2
cap = cv2.VideoCapture("vid.mp4")
while True:
flag, frame = cap.read()
if not flag:
cv2.imshow('video', frame)
if cv2.waitKey(10) == 27:
breakWhen a frame is not ready it produces an error like this
or
Truncating packet of size 2916 to 1536
[h264 @ 0x7ffa4180be00] AVC: nal size 2912
[h264 @ 0x7ffa4180be00] AVC: nal size 2912
[h264 @ 0x7ffa4180be00] no frame!
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ffa41803000] stream 0, offset 0x14565: partial fileI wanted to find a way to hide this error ! I guess that this error is being produced by
ffmpeg
. Is there any way to hide or disable it ?This error is produced when I call
cap.read()
. And I also tried to wrap it withtry ... except ...
but it doesn't work because it doesn't throw any exceptions.