
Recherche avancée
Autres articles (106)
-
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 (...) -
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" (...)
Sur d’autres sites (14178)
-
FFMPEG Image overlay Fade in and out on Video not working properly
24 août 2015, par HardCore CODERhi i have a video around 30 second and i want to set overlay image between 5 - 10 second only and play remaining video as per as.
But i have an issue the video start with black screen and fade in on 5th second and play well upto 10 second and fade out to black after 10 second and whole video is black screen upto 30 second
-i input.mp4 -i 34232944.png -filter_complex " [0:v][1:v] overlay=0:0:enable=’between(t,5,10)’,fade=t=in:st=5:d=1,
fade=t=out:st=10:d=1 ’" -c:v libx264 -crf 23 output.mp4video link :-
https://www.dropbox.com/s/vmbed5vxtakfhg5/TinyTake24-08-2015-02-59-59.mp4?dl=0Please help me.
Thanks -
sppedUp FFmpegKit overlay Flutter
17 septembre 2023, par mlikaI'm using FFmpegKit to overlay text on video :
I'm coding it for macos app, I double checked the CPU usage,it's using only 20%
I have MAC M1 PRO


String drawtextFilter = 'drawtext=fontfile=\'$_fontPath\':'
 'textfile=\'${segments[i].textFilePath}\':'
 'x=(w-text_w)/2:y=(h-text_h)/2:'
 'fontsize=65:fontcolor=white@0.8:' // @0.8 sets the opacity
 'bordercolor=black:borderw=9:'
 'shadowcolor=black:shadowx=5:shadowy=5:' // Adding shadow
 'box=1:boxcolor=black@0.1:boxborderw=20:' // Adding background box
 'fix_bounds=1:'
 'line_spacing=10:'
 'enable=\'between(t,0,${segments[i].duration})\'';
 String command =
 '-i "${segments[i].videoPath}" -vf "$drawtextFilter" -c:v h264_videotoolbox -threads 0 -y "$outputPath"';




The problem is it's taking too long to finish the speed is around 0.6
Is there a solution or alternative as, I'm converting 1hour+ videos and it's taking too much time.
Thanks


- 

- I tried compute and Isolate to run multiple ffmpeg but it still very slow




-
How can I combine these three ffmpeg commands ?
16 mai 2022, par Anuj SaxenaI want to combine the following three commands into one command, if possible.


a = f'''ffmpeg -i {footage} -vcodec libx264 -acodec aac {mov_path}'''
b = f'''ffmpeg -i {mov_path} -vf "drawtext=text=' {hostname}\n {socket.gethostbyname(hostname)}\n {getpass.getuser()}':x=10:y=H-th-10:fontfile=KhmerOS.ttf:fontsize=50:fontcolor=black:shadowcolor=black:shadowx=2:shadowy=2" {watermark_path}'''
c = f'''ffmpeg -i {watermark_path} -vf "drawtext=fontfile=KhmerOS.ttf: text='%{{frame_num}}': start_number=1: x=(w-tw)/2: y=h-(2*lh): fontcolor=black: fontsize=50: box=1: boxcolor=white: boxborderw=5" -c:a copy {current_frame} '''



I want a single output video because I don't want to use unnecessary variables like b,c,watermark_path, and current_frame I want only one resultant video with mov_path