
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 (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (10863)
-
ffmpeg - compilation problem with g++
22 août 2014, par SunI am trying to run a program which uses ffmpeg libraries to decode a mp3 file. I am using following options for compiling the program :
g++ -c play.cpp -o play.o
g++ -o play play.o -L/usr/local/lib -lavutil -lavcodec -lavformat -lavdevice \
-lavfilter -ldl -lasound -L/usr/lib -lSDL -lpthread -lz -lswscale -lmBut while linking I am gettign following errors :
play.cpp:(.text+0x49): undefined reference to `av_dup_packet(AVPacket*)'
play.cpp:(.text+0x66): undefined reference to `av_malloc(unsigned int)'
play.cpp:(.text+0x324): undefined reference to `avcodec_decode_audio3(AVCodecContext*, short*, int*, AVPacket*)'
play.cpp:(.text+0x387): undefined reference to `av_free_packet(AVPacket*)'and so on...
These reported functions are available in the libavcodec.a etc. which i have already specified with the link options.
Can anyone please tell me what could be wrong here or suggest how to approach debugging this ? -
FFmpeg Zoom in and out video every x seconds problem
6 juillet 2020, par cleanguyI want to zoom in 3 seconds every 6 seconds and then zoom out. I can do this, but the sound slips. video zoom periodically What would be the reason ?


ffmpeg -i "test.mp4" -vf "zoompan=z='if(lte(mod(time,4),3),zoom+0.5,zoom-0.2)':x='iw/2-(iw/zoom)/2':y='ih/2-(ih/zoom)/2':d=1:fps=24" -vcodec libx264 -acodec aac -preset ultrafast "rendered/test.mp4"



-
Have some problem when merging two video files with ffmpeg and xfade filter [closed]
12 septembre 2023, par song jinffmpeg -i img_1.mp4 -i img_2.mp4 -i img_3.mp4 -i img_4.mp4 -i img_5.mp4 -filter_complex "[0:v]xfade=transition=wiperight:duration=1:offset=4[v0];[1:v]xfade=transition=wiperight:duration=1:offset=8[v1];[2:v]xfade=transition=wiperight:duration=1:offset=1[v2];[3:v]xfade=transition=wiperight:duration=1:offset=1[v3];[v0][v1][v2][v3]concat=n=4:v=1:a=0,format=yuv420p[v]" -map "[v]" -y -s 1920*1080 concat.mp4

I was using this command to merging multiple videos, and then the following problem occurred:

Stream mapping:Stream #0:0 (h264) -> xfade
Stream #1:0 (h264) -> xfade
Stream #1:0 (h264) -> xfade
Stream #2:0 (h264) -> xfade
Stream #2:0 (h264) -> xfade
Stream #3:0 (h264) -> xfade
Stream #3:0 (h264) -> xfade
Stream #4:0 (h264) -> xfade
format:default -> Stream #0:0 (libx264)



As a result, there will be multiple input streams in the video.
How can I solve it ?
I hope have only one input per video stream
I want to have only one input per video stream