
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (102)
-
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 (16994)
-
Changing the background color of the movie while using tpad and adelay
1er août 2019, par S.Ti want to change the background color of a movie while using
tpad
andadelay
commands. it is now black ( until the movie starts).the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the
tpad
that needs to be change).-filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
[0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000kthe 5 seconds that the movie is in its
"waiting mode"
needs to be changed from default black to some other color. Thanks. -
Creating a 1-second, 1080p video with FFmpeg - Command Terminating Prematurely
16 juillet 2023, par hello worldI'm trying to create a 1-second video with a resolution of 1080p and a frame rate of 30 fps using FFmpeg. However, I'm encountering an issue where the command terminates prematurely and doesn't generate the desired output.


I've been using the following command :


ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=30:d=1 -vf "fps=30" output.mp4




The expected result is a black video with a duration of 1 second, but I'm unable to obtain the output file. The command exits without any error message, leaving me unsure of what might be causing the issue.


I would appreciate any insights or guidance on how to troubleshoot this problem and successfully generate the intended video with FFmpeg.


Thank you in advance for your help !


-
ffmpeg - replace all corrupted frames with a dummy
24 août 2020, par DmitryI look for a solution on how to detect and then automatically replace all corrupted (or completely broken) frames with a black one.


I've already tried the following command, but the result is not quite what I actually need.


ffmpeg -err_detect ignore_err -i video-with-broken-frames.avi -c copy fixed.avi



This command detects and replaces all corrupted frames with the nearest good one. So that if I have 20 corrupted frames at the start of a video - they will be replaced with 21st good one. Well, what I need is to replace corrupted frames with some dummy, for instance with a black one. Or just some-how to indicate what that frame is broken and was copied.