
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (51)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (4664)
-
How to specify size of output image in FFmpeg command ?
30 juillet 2023, par saladguyI'm extracting frame images from an MP4 video using
ffmpeg
in terminal.


I used the command :



ffmpeg -i Video.MP4 Pictures%d.bmp




Problem is that the extracted images have a size of 4.5-5MB ! I want smaller images, say around 1-2 MB. How do I limit the size of output images ?


-
How to Convert MP4 to HLS with Multiple Audio and Multiple Video Quality in Python/Django ?
8 août 2021, par Sanjay SikdarI have tried with ffmpeg library and I can convert videos mp4 to hls with multiple quality but multiple audio is not working. > [Commands Excuting from Terminal]


And with subprocess library calling
subprocess.call
. > [ Want to know is this the right way ? to do with Django ? ]

-
How to send ctrl-c to stop ffmpeg
30 juillet 2014, par Anna SAELEEI have written a small function like this :
def test():
command = "ffmpeg -f mpegts -i udp://224.6.207.111:1234?multicast=1 -acodec copy -vcodec copy -sameq ff-output.ts"
os.system(command)
self.myTimer = Timer(10, "myTimer")
self.myTimer.start()
os.system(signal.SIGINT)
self.myTimer.stop()When i run
test()
in python in my terminal, ffmpeg always continues without closing.
Does someone know how to stop it ?Thank you for all comment ;D
I have find that we can use -t option for ffmpeg :)