
Recherche avancée
Autres articles (81)
-
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" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7833)
-
FFMPEG Can I overlay an image larger than a video, on a video ?
5 mars 2019, par vadus1Can I overlay an image larger than a video, on a video ?
I have a mp4 file with
320x*
,It turns out I can not find out the height of the video, that crop the image for the overlay video.
ffmpeg -i input.mp4 -i transback.png -filter_complex "[0:0] scale=320:-2 [wm]; [1:0] scale=320:-2:force_original_aspect_ratio=decrease [prog], [wm][prog]overlay" fart.mp4
I will try to execute this command, but not luck ;
I got it. -
How to replace the video track of a part of a video file ?
17 juin 2019, par yukashima huksayI have an mp4 file like this(same format but longer) :
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'N1.2.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
creation_time : 2018-10-31T13:44:21.000000Z
Duration: 00:28:54.21, start: 0.000000, bitrate: 10295 kb/s
Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 9972 kb/s, 50 fps, 50 tbr, 50k tbn, 100 tbc (default)
Metadata:
creation_time : 2018-10-31T13:44:21.000000Z
handler_name : ?Mainconcept Video Media Handler
encoder : AVC Coding
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 317 kb/s (default)
Metadata:
creation_time : 2018-10-31T13:44:21.000000Z
handler_name : #Mainconcept MP4 Sound Media HandlerI also have another video file that is 3 minutes long. and has no audio. What is the fastest way to encode the other video in a way that it is encoded like my main video and then replace the last three minutes of the video track of my original video with this ?
In other words.
I have video A that is 1 hour long. With the encoding shown above.I have video B that is 3 minutes long with no audio. with a random encoding.
I want to have video C with the same encoding and same audio as A. But it’s video track would be the first 57 minutes of A + B(which is 3 minutes).
I want to do this as fast as possible so I would like to not re encode A.
I know how to concatenate two videos, I use this command :
ffmpeg -f concat -i files.txt -c copy res.mp4
-
frame extracted from a video using opencv or ffmpeg is vague, picture i snip from video is clear
15 avril 2024, par user11317826I record a video from roadside, and I want to recognize plate license in video. but I find that if I extract every frame from video using python, the frame is too vague to recognize.


I have tried
opencv
andffmpeg -i input.mp4 -ss 00:00:10.000 -vframes 1 output.png

`



but if I snip video every second the picture is clear




what's the reason of this phenomenon, how can I fix it


I have tried frame average, it didn't work