
Recherche avancée
Autres articles (35)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (4804)
-
FFMPEG overlay video over image using movie filter resulting video with no sound
22 février 2021, par Herahadi AnI want to overlay srinked video on the top of single image.
I use movie filter to do that. like this


ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=C\\:/\Users/\Toshiba/\Pictures/\test vcp/\shopi pro.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4



It's work. but the problem, the audio from video is removed. The final video out.mp4 has no sound, even though the original video has.


I have read answer on this threat FFMPEG overlaying video with image removes audio


That recommend to Change into
...[padded]overlay=0:0" -y ...
Oradd -map 0:a


But I don't understand how to implement that answer into movie filter


-
ffmpeg output file size grows faster than linearly with movie length
14 janvier 2021, par Jakob FilserI'm using ffmpeg to string together some .bmp images into a movie. In total, there are 1001 frames, amounting to 0:40 length. The command I'm using is


ffmpeg -f image2 -i render.%05d.bmp -c:v libx264 -s 512:268 render.mp4



The output file is 33,2 MB large, which is about twice the size of a full HD (about 16 times the pixels !) video of the same length. Apart from the file size being unreasonably large, I realized it grows faster than linearly (can't tell exactly if it is quadratic, exponential etc.) with the number of frames. After 100 frames it is about 1536 KB large (which is already too large), after 500 frames it is already 15104 KB, and after 1001 it finally arrives at 34085 KB.


My educated guess would be that for each frame it stores some information about all of the previous frames again, which makes absolutely no sense.


What am I doing wrong ? Before you recommend libx265 to me : It turns the entire video green.


-
Transparent movie with video format qtrle unplayable in QuickTime
1er janvier 2021, par 220284I use the python library Manim to generate mathematical animations. I want to use the animations in Keynote presentations. Manim has the option to produce movie clips with a transparent background. Unfortunately, QuickTime won't play the files generated by Manim. Here's the metadata for a file produced by Manim


Metadata:
 major_brand : qt 
 minor_version : 512
 compatible_brands: qt 
 encoder : Lavf58.45.100
 Duration: 00:01:07.00, start: 0.000000, bitrate: 6635 kb/s
 Stream #0:0: Video: qtrle (rle / 0x20656C72), argb(progressive), 1280x960, 6632 kb/s, 60 fps, 60 tbr, 15360 tbn, 15360 tbc (default)
 Metadata:
 handler_name : VideoHandler
 encoder : Lavc58.91.100 qtrle



Ideally, I would want to use ffmpeg to turn these files into movie clips with transparent background which are playable in QuickTime. Can this be done ?


As a work around, I imported the files into Final Cut Pro and exported them again using Apple Pro Res 4444, but this resulted in huge file sizes.