
Recherche avancée
Autres articles (64)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...)
Sur d’autres sites (10861)
-
ffmpeg - Drawing rotated text on video with complex filters takes a very long time
14 mai 2019, par Bedrule PaulI am trying to overlap different text pieces on some placeholders in a video, and I am using multiple complex filters of the following type :
ffmpeg -i ~/Desktop/input.mp4 -filter_complex \
"color=black@0:100x100,format=yuva444p[c]; \
[c][0]scale2ref[ct][mv31]; \
[ct]setsar=1,split=1[t31];\
[t31]\
drawtext=text='text':x='main_w/2-text_w/2+70':y=210:fontsize="100":fontcolor=black,\
drawtext=text='text2':x='main_w/2-text_w/2+75':y=340:fontsize="100":fontcolor=black,\
rotate=-0.07:ow=rotw(-0.07):oh=roth(-0.07):c=black@0[txta31]; \
[mv31][txta31]overlay=enable='between(t, 0, 1.15)':x='min(0,-H*sin(-0.07))':y='min(0,W*sin(-0.07))':shortest=1" \
~/Desktop/result.mp4 -y1My goal is to write differently rotated texts on different time intervals in the video. The problem is that at about 10-12 [t31]-like pieces(here is an example of only one command), the rendering time of the video is twice the time of the video, whereas drawing straight horizontal text takes about 10-20% of the total video length (examples, for a 1 minute video, it takes about 8-10 seconds to write straight horizontal text, and about 2 minutes to write the same amount of text, but inclined with an angle). Is there any better way to do these multiple rotated text bits with more performance ?
-
`FFmpeg` `segment_time` inserts blank frames at the beginning of segment
27 août 2017, par asdfI am using the following command to cut videos in parts.
I need parts to be less than passed max_length param, I do not need precise cuts.ffmpeg -i input.mov \
-segment_time 20 -f segment -reset_timestamps 1 input_%d.movEvery first part video file cut by
ffmpeg
is not 20s, but 20.5s long. And it has several black frames at the beginning inserted byffmpeg
.I don’t mind having 19.5s long parts if that is needed because of keyframes. But I need to get rid of those black frames at the beginning so that videos cut in parts could be concatenated in a single video later without any troubles.
Could you give me an advice ?
Upd :
There were no black frames in an original video which was 23 seconds long.
I made a cut setting 12 as a segment length.I also had to add
-c copy
because I would like to keep original quality if that’s possible.Leading black frames were added after a cut to part 1 which is 12 seconds long.
Trailing black frames were added after a cut to part 2 which is 10 seconds long.
https://www.dropbox.com/sh/zo8evta3w1xho3o/AABpTB3w3CuPa1WcghkSIVfna?dl=0
The command used was
ffmpeg -y -i /Users/nt/Desktop/cut/AAL_CrSlowMo_041413_1.mov -c copy -segment_time 12 -f segment -reset_timestamps 1 /Users/nt/Desktop/cut/AAL_CrSlowMo_041413_1_%d.mov
Here’s output of
ffmpeg
:
https://gist.github.com/nmtitov/ad102539f95fa03b95f10a46f8d99663 -
ffmpeg upscale 4/3 video to fullhd by crop vertically
27 novembre 2022, par marcoluca987I have some video 4:3 generally are 1280x960 and other resolutions.


I like to upscale it to 1920x1080 and crop vertically to avod horizontal black borders.


I have found this commmand :


ffmpeg -i intro_NR_Upscale_4x.mp4 -filter:v "pad=ih*16/9:ih:(ow-iw)/2:(oh-ih)/2" -c:a copy intro_NR_Upscale_4x_ouput.mp4



but not work and continue to show horizontal black borders.


There is a command line that upscale low resolution 4:3 video to 16:9 and crop it ?


Thanks !