
Recherche avancée
Autres articles (82)
-
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 (10781)
-
Create a vertical video scroll based on an image using ffmpeg
27 septembre 2019, par Dinh Quang KhangI am creating a video scroll vertical image with ffmpeg.
My code
ffmpeg -loop 1 -t 61 -i 0.jpg -filter_complex "color=white:s=1280x720[bg];[bg][0]overlay=y=-'t*120':shortest=1[video]" -r 200/1 -preset ultrafast -map [video] "D:\FFMPEG\output.mp4"
But the video is very bad. Although I set the frame rate at 200, it is jerky.
My source image enter image description here
And result result video
-
streaming connection lost using ffmpeg SDK
30 avril 2020, par manikCoderI am streaming on youtube using ffmpeg.



Some time my connection get lost. How could i know at ffmpeg sdk end if my connection lost ??



I am using av_interleaved_write_frame() method to write stream.



Following is Health analysis at youtube end.enter image description here


-
ffmpeg - different video and audio length synchronization
4 mai 2020, par Halil Han BademI have a task where the sound is longer and the image should come later.
Actually, this is exactly what I want, but it's a bit different : ffmpeg : mix audio and video of different length



First of all, I leave the picture I draw below to be understood.
Click to see the image.



By doing this I am thinking of catching sync. With which ffmpeg command can I do this ?
Thank you.