
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (20)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6017)
-
Speed up a video without audio to 2x with FFmpeg in android
12 décembre 2020, par VoidMainI am working on a project in which I need to speed up a mute video. I did a little digging around and found the following command.



ffmpeg -i input.mkv -filter:v "setpts=PTS/2" output.mkv 




Tried to use it in android as follows.



new String[]{"-y", "-i", inputFileAbsolutePath, "-filter_complex", "setpts=PTS/2", "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4", fileOutput};




It doesn't even show anything in the Logcat.



I have also tried a few other solutions but no luck.
Any help would be appreciated.
Thanks.


-
How to make a PAN faster/slower speed with FFmpeg ?
27 février 2019, par Duty AlexI have an image named "input.png" 1920x7580 px and i want to make a PAN across it from top to bottom. My current code is :
ffmpeg -loop 1 -i input.png -vf crop=1920:1080:0:n -frames:v 6500 out.mkv
My video duration with this default speed is 4:20 (260 second). The scrolling down speed is 25 pixels per second.
How i increase/decrease this speed without changing the video FPS (25 fps) ? For example my video duration to be 3 minutes.
Thank you !
-
ffmpeg - Speed up rtsp stream conversion to mp4
9 janvier 2019, par miejscovI want to ask if it is possible to speed up converting RTSP stream to mp4 file ?
For example 1 minute segment takes 1 minute to download and convert, that’s too long. What depends on speed of conversion ?My ffmpeg command looks like this :
ffmpeg -ss 05:05:00 -i rtsp://test:test@0.0.0.0:000/vod/camera -t 00:01:10 -s 720x480 -c:v libx264 -acodec copy "destination.mp4"