
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (90)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6508)
-
FFMPEG : overlay video_audio NOT concatenate or merge android
9 juillet 2016, par parik dhakanI am trying to overlay two video+audio and make single video but I only get the first video voice only not getting second video voice. Here is my code :
String[] complexCommandv = {"ffmpeg", "-y", "-i", "/sdcard/videokit/in.mp4", "-i", "/sdcard/videokit/tttt.mp4", "-strict", "experimental", "-filter_complex", "[0:v:0]pad=iw*2:ih[bg];" + "[bg][1:v:1]overlay=w", "-s", "320x240", "-r", "30", "-b", "15496k", "-vcodec", "mpeg4", "-ab", "48000", "-ac", "2", "-ar", "22050", "/sdcard/videokit/partik.mp4"};
-
How to combine these FFMPEG command ?
1er juin 2021, par capdev

Add logo




ffmpeg -i mainVideo.mp4 -i logo.mov -filter_complex "[0:v]setpts=PTS-STARTPTS[v0];[1:v]setpts=PTS-STARTPTS+36/TB[v1];[v0][v1]overlay=eof_action=pass[out1]" -map [out1] -threads 5 -y main_with_logo.mp4





Remove voice




ffmpeg -i main_with_logo.mp4 -c:v copy -an main_with_logo_s.mp4 -y





Add Speaker Voice




ffmpeg -i main_with_logo_s.mp4 -i voice.mp3 -filter:a "volume=2.5" -vsync vfr -pix_fmt yuv420p -b:v 4400k -vf fps=25 -c:a aac -strict experimental main_with_logo_voice.mp4 -y -threads 5





Add BGM




ffmpeg -i main_with_logo_voice.mp4 -i bgm.mp3 -filter_complex amix=inputs=2:duration=first:dropout_transition=2 -y -threads 5 main_with_logo_voice_bgm.mp4





Add Subtitle




ffmpeg -i main_with_logo_voice_bgm.mp4 -vf "subtitles=main.srt:force_style='Fontname=jx,Fontsize=16'" -threads 5 -y main_with_logo_voice_bgm_srt.mp4



All these step takes long time , how can i combine these cmd to one or two ?


-
Ffmpeg sidechaincompress with different input audio lengths
29 janvier 2023, par user19313832There are two input files :


- 

- First entry is a video with music - 6 min.
- Second entry - voice - 3 min.
Here
compr
will contain the audio of video that is muted when start talking (second input).






ffmpeg -y -i %pathToVideo% -i %pathToAudio% -filter_complex ^ ^"[0:a][1:a]sidechaincompress=threshold=0.015:ratio=19:level_sc=1:release=1400:attack=1[compr]^" ^ -c:v copy -map 0:v -map [compr]:a %out%


Problem - sound of the video is completely turned off when the voice ends, at the 3rd minute.


This works well for the first 3 minutes.
Then the sound of the video is turned off.


Half of the video remains without sound.
It is necessary that the sound of the video remains, and not turned off.
It looks like it only works on audios of the same length, but here the audios are different lengths ???????????


It is necessary that the sound of the video does not turn off after the 3rd minute. Because the voice file is only 3 minutes.