
Recherche avancée
Autres articles (38)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6832)
-
truehd : break out part of output_data into platform-specific callback.
20 mars 2014, par Ben Avison -
ffmpeg : After using scale2ref and concat filter only part of video is encoded [closed]
19 mai 2024, par Ricardo BohnerI'm trying to select some parts of an video, concat them, and apply an overlay that should have 1/6 of the video width :


ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select='between(t,3,9)',setpts=PTS-STARTPTS[P1];[0]select='between(t,12,15)',setpts=PTS-STARTPTS[P2];[0]select='between(t,60,70)',setpts=PTS-STARTPTS[P3];[P1][P2][P3]concat=n=3:v=1:a=0[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable='between(t,1,7)'[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"



The output video results in a video that contains only the first part of the selections [P1] (or even less)...


Strangly if I use something like this without using concat filter everything works like expected :


ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select='between(t,3,9)+between(t,12,15)+between(t,60,70)',setpts=N/FRAME_RATE/TB[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable='between(t,1,7)'[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"



Does anyone know what I'm doing wrong or how to use concat with scale2ref and overlay together ? Thanks...


-
Delete a part from ogg file with ffmpeg
24 avril 2012, par oxoI use this command to crop audio files :
ffmpeg -ss 50 -i "input.ogg" -acodec copy -y -t 100 "output.ogg"
This works fine. But now, I'd like to delete a section from an audio file - preferably without recompressing it.
Example : input.ogg has duration 60sec, delete section [10s:20s] => output.ogg has then duration 50sec and includes section [0:10s] and [20s:60s] from input.ogg.
Is it possible with one command or do I have to split the file into two and then join it back ?