
Recherche avancée
Autres articles (61)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
-
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 (...)
Sur d’autres sites (5103)
-
avcodec/mpegaudio_tablegen : speed up dynamic table creation
25 novembre 2015, par Ganesh Ajjanagaddeavcodec/mpegaudio_tablegen : speed up dynamic table creation
This does some miscellaneous stuff mainly avoiding the usage of pow to
achieve significant speedups. This is not speed critical, but is
unnecessary latency and cycles wasted for a user.All tables tested and are identical to the old ones
(bit-exact even in floating point case).Sample benchmark (x86-64, Haswell, GNU/Linux) :
old :
102329530 decicycles in mpegaudio_tableinit, 1 runs, 0 skipsnew :
34111900 decicycles in mpegaudio_tableinit, 1 runs, 0 skipsReviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com> -
Speed of moving text drawtext filter - FFMPEG
8 mai 2016, par BOBI’m using this command to move text from one place to another using ffmpeg
ffmpeg -i VideoInput.mp4 \
-vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test': \
x='x1+(x2-x1)*(t-t1)/(t2-t1)':y='y1+(y2-y1)*(t-t1)/(t2-t1)':fontsize=65" \
-acodec copy outputVideo.mp4Now I need to control the speed of moving the text. I want to speed it up.
How do I control the speed ?Any suggestions ?
Thank you
-
How to speed up video conversion
9 mai 2016, par ArheiselI’m currently working in a proyect that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.
For now i’ve tried copying the folder to a ram disk and using avconv wich takes about a minute.
Here is my command :
avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg
could ffmpeg work faster ?
is there a way to speed it up ?
wich video format take less time to convert to ?