
Recherche avancée
Autres articles (51)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6395)
-
Révision 62572 : Fermer http://core.spip.org/issues/2761 : En cas d’anomalie de dépendance lorsqu...
15 juin 2012, par marcimat@rezo.netEt aussi : Des notices PHP Écriture plus légère de certains crochets
-
Having issues with FFMPEG
8 août 2022, par Landonorris0001Im using the following code to timelapse a set of files in the format of yyyy-mm-dd-hh-mm


It is using fswebcam to make the image and does so every minute with a crontab, that works fine, however the ffmpeg isn't working, im using the following command for it


cat $(ls | sort -V) | ffmpeg -framerate 10 -i - -vcodec libx264 -pix_fmt yuv420p -r 20 outputvideo.avi



When running the code I get a


pipe: : Invalid data found when processing input


I got this from https://youtu.be/_uVaZalaSbI to make the image creator and https://youtu.be/miYSR8yjbAM to make the video processor.


Any help would be nice, thanks.


-
FFmpeg Slideshow issues
19 décembre 2013, par loveforfire33trying to get my head around ffmpeg to create a slideshow where each image is displayed for 5 seconds with some audio. created a bat file to run the following so far :
ffmpeg -f image2 -i image-%%03d.jpg -i music.mp3 output.mpg
It gets the images and displayes them all very fast in the first second of the video, it then plays out the rest of the audio while showing the last image.
I want to make the images stay up longer (about 5 seconds), and stop the video after the last frame (not playing the rest of the song), are either of these things possible ? i could hack the frame rate thing i guess by having hundreds of the same image in order to keep it up longer, but this is far from ideal !
Thanks