
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (74)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9982)
-
How to add intro image beginning of video with same video aspect ratio in ffmpeg ?
10 juin 2021, par Manoj KagI have one image and one video. I would like to add image as video just before actual video so i can stream video with intro frame for 5 seconds.


I found one command and full fill my requirement but in that command image added at the end of the video and i need beginning of the video. Let me share command below :


ffmpeg -i 1.mp4 -loop 1 -t 5 -i 2.jpg -f lavfi -t 5 -i anullsrc -filter_complex "[0]split[base][full];[base]trim=0:5,drawbox=t=fill[base];[1][base]scale2ref=iw:ih:force_original_aspect_ratio=decrease:flags=spline[2nd][base];[base][2nd]overlay='(W-w)/2':'(H-h)/2'[padded];[full][0:a][padded][2:a]concat=n=2:v=1:a=1[v][a]" -c:v libx264 -c:a aac -strict -2 -map "[v]" -map "[a]" output.mp4


Image should be resize dynamically according to the video resolution.
Best solution will be appreciate from bottom of heart.


-
Smaller video file size while keeping the quality of video ?
12 octobre 2016, par user3157841I am newbie for Video analysis,
I am looking for a solution that can decrease (or losing not much) the size of video (bytes) but that does not also decrease the picture quality of video (resolution).I also research from
FFMPEG
lib, but I can not find out any solution ?
Anyone can help me or give me suggestion for this problem ?
Thank you so much -
How to cut video, add audio and burn subtitle while cropping video all in one command - ffmpeg
15 mars 2023, par constantlyFlaggedCurrently I have the following code,


which cuts the video, adds audio and burns subtitle into the video.


-ss 00:00:30 -t -i video.mp4 -i audio.wav -vcodec copy -acodec copy -map 0:0 -map 1:0 -vf subtitles=subtitle.srt



but I need to crop the video before the subtitle is added. I know it is possible to crop video using the command :


-vf crop=405:720



or using


-filter:v crop=405:720



but I am unable to use it in conjunction with the above statement. What would be the best approch to get the desribed outcome ?