
Recherche avancée
Autres articles (46)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9761)
-
ffmpeg filter in my own application
26 juin 2018, par user25571How can I use one of filters from ffmpeg library in my own application. In fact, I only wanna detect silence in my audio files and so I must use
af_silencedetect.c
file. This file is one of ffmpeg filters that can be utilized with-af silencesetect
command.Therefore my obvious question is : "What’s step-by-step procedure in using this file in my own application and which dependencies I must add to my MSVC project ?"
Your points are appreciated in advance ....
-
First x frames from a video
27 juin 2012, par DowI need to get the first x frames from a video (usually FLV) and turn it into a GIF. The idea is to use these GIFs as a short preview for the real thing.
At the moment, we're using ffmpeg and imagemagick to do that :
ffmpeg -y -i movie.flv -pix_fmt rgb32 -r fps extracted/%d.png
convert extracted/0.png ... extracted/50.png -delay 4 -loop 0 \
-set dispose Background -sample 256x256> preview.gifSo basically, first the frames are extracted, converted to PNG, then the PNGs are put together again into a GIF. There are a lot of unnecessary steps involved here.
Does anyone have any suggestions for speeding up this process ?
Thanks in advance !
-
Is there any way to use nodecanvas(Canvas library for node) for video purpose ?
7 mai 2019, par AswinI know that node-canvas can be used to export as buffer by loading image, Is there was any to load video in node-canvas (canvas library for node js),So that i can take screenshots of canvas frame by frame and finally i can prepare video from screenshots using ffmpeg. Or any other alternative way to achieve this . Anyone please give me any idea.Thanks in advance.