
Recherche avancée
Médias (16)
-
#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 (108)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10614)
-
avfilter/showvolume : add display scale option
16 avril 2018, par Martin Vignali -
ffmpeg can't run both scale and hardsub
16 mars 2018, par Trung Nguyenmy command
-
Code 1
ffmpeg -i input.mkv -vf "ass=inphut.ass" -map_metadata -1 \
-vf scale=800:trunc(ow/a/2)*2 -vcodec libx264 -preset slow \
-threads 2 -vprofile main -level 3.1 -vb 800K -r 25 -g 50 \
-sc_threshold 0 -movflags faststart -acodec aac -strict -2 \
-ab 128K output_800.mp4
When i run it, output not add hardsub.
-
Code 2
ffmpeg -i input.mkv -map_metadata -1 -vf scale=800:trunc(ow/a/2)*2 \
-vf "ass=input.ass" -vcodec libx264 -preset slow -threads 2 \
-vprofile main -level 3.1 -vb 800K -r 25 -g 50 -sc_threshold 0 \
-movflags faststart -acodec aac -strict -2 -ab 128K output_800.mp4
When i change
-vf ass
below-vf scale
, output hardsub video but scale video.You can help me ? Thank you very much !
-
-
concat multiple image and multiple video using complex_filter concat and scale simultaneously ? [duplicate]
7 mars 2018, par Ratna deep vermaThis question already has an answer here :
I have two ffmpeg commands :
ffmpeg -loop 1 -t 5 -i test4.jpg -i test4.jpg -preset ultrafast -vsync vfr -filter_complex "[0:v]fade=t=out:st=4:d=1,scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v0];[1:v]scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v1];[v0][v1]concat=n=2:v=1:a=0,format=yuv420p[v]" -map "[v]" rd.mp4
and
ffmpeg -i newvideo.mp4 -i videoplayback.mp4 -i newvideo.mp4 -preset ultrafast -vsync vfr -filter_complex "[0:v]scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v0]; [1:v]scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v1];[2:v]fade=t=in:st=0:d=1,fade=t=out:st=4:d=1,scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v2]; [v0][v1][v2]concat=n=3:v=1:a=0[v]" -map [v] rd.mp4
How i can combine these two commands ?
I want to concatenate multiple image with different resolutions and multiple Videos with different resolutions and bit rate.
Above two commands work properly but i am not able to combine these two commands in single command.
I tried this command
ffmpeg -i newvideo.mp4 -i videoplayback.mp4 -loop 1 -t 5 -i test4.jpg -preset ultrafast -vsync vfr -filter_complex "[0:v]scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v0]; [1:v]scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v1];[2:v]fade=t=in:st=0:d=1,fade=t=out:st=4:d=1,scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2[v2]; [v0][v1][v2]concat=n=3:v=1:a=0[v]" -map [v] rd.mp4
I just try to add an image end of video with 5 second’s duration. Although it can by any sequence of video and image
I am getting this error :
Input link in2:v0 parameters (size 1280x720, SAR 144000:144001) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 1:1)
[Parsed_concat_8 @ 0000000002a56520] Failed to configure output pad on Parsed_concat_8
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #2:0
Conversion failed!