
Recherche avancée
Autres articles (96)
-
Les sons
15 mai 2013, par -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (9957)
-
Have python translate the correct file name
24 avril 2018, par DutchNinjaI’m trying to make a small simple program that can make a video out of a bunch of pictures.
I found this :
os.system("ffmpeg -r 1 -i img%01d.png -vcodec mpeg4 -y movie.mp4")
It works but only if the file names are imgxxx.png
my files are named : xx.xx.xx.xxx.jpg (example : 11.58.30.445.jpg). As you might understand the file names are made from the time the picture is taken.
I have tried several options but I can’t make python read the correct files. I could rename all the files but I want the program to run by itself so renaming all the files is not the solution I’m looking for.
Thanks in advance for all the help.
-
Merge commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c'
11 novembre 2017, par James AlmerMerge commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c'
* commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c' :
cbs : Add some read/write tests
http: Reset compressed header flag when starting to read a request
cbs_h264 : Fix writing streams with auxiliary pictures
smacker : fix integer overflow with pts_inc
smacker : return meaningful error codes on failure
pixdesc : Add API to map color property names to enum valuesThis commit is a noop, see
6f15f1cdc85350b7adcfb7c50eedb5ecde6a384a
547b8aeed442dbb3b2cf4a2c507c63e869795cfd
7ed47e97297fd5ef473d0cc93f0455adbadaac83
624d4739dbfc950ee756e83ae187f97dc82d10c9
6743351558001764d662bb52b9a3e0bbb63366d6
809b0402dc916b876dfdd6bb9c88f171cf3e77c0Merged-by : James Almer <jamrial@gmail.com>
-
ffmpeg create a tile with a extremly high resolution [closed]
7 octobre 2020, par FrederikI want a tile in a hidh resolution, but I get an error that the picture size is invalid.

ffmpeg -i video.mp4 -frames: 1 -vf "select=not(mod(n\,100)),scale=1920x1080,tile=5x50" out.jpeg.
Picture size 9600x54000 is invalid
. But this is lower than the max jpeg size which is 65,535×65,535. How can i fix it or how do i tell ffmpeg to split it up in multiple pictures.