
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#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
Autres articles (57)
-
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 (...) -
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 (...) -
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 (6135)
-
How to create videos from images using ffmpeg android ? [on hold]
30 mai 2016, par GajuHello every one I want to do these three things :
- Create videos form no of images and play as a slide show ?
- Merge Audio and Video in video file.
- Merge two video ?
For this I am using ffmpeg command using android ffmpeg library. I uesd many command also create video from images but its duration for images not well i some times finish video in 1 second or sometimes it will show only one images and also sometimes it play slides at a very fast speed. So what i do for this ? and I also tried with Javacv, but not getting any exact solution.
-
FFmpeg command overlay watermark speed
3 septembre 2021, par user892134I currently use the following command to add a watermark to 2GB video. This takes around an hour. I'm wondering if i can speed this up in anyway.


ffmpeg -y -i input.mp4 -i watermark.png -filter_complex \"overlay=10:10\" -c:a copy -c:v libx264 -crf 22 -preset ultrafast output.mp4



I'm using preset
ultrafast
, is there another command which can add a watermark quicker than what i'm using ? If not, how can i change command to show watermark every nth frames that won't show flicker e.g. every 5 frames ?

-
ffmpeg extract video unable to play
30 juin 2021, par Khánh Phạm ĐìnhI use
ffmpeg
to stream video and show up the camera's frame to window in the same time according to current code :

file
record_video_and_showup.sh


ffmpeg -f v4l2 -framerate 30 -i $1 -c:v libx264 -preset superfast -crf 18 -pix_fmt yuv420p -c:a libmp3lame -ac 2 -ar 44100 -b:a 128k -f tee -map 0:v "$2|[f=nut]pipe:" | ffplay -an pipe:



to record video and show up :


./record_video_and_showup.sh /dev/video0 test.mp4



finally, we get file
test.mp4
but can't play it on app such as vlc. When we open it on google chrome, it can run but the start and end time were incorrect.

Can anyone help me ?