
Recherche avancée
Autres articles (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (...)
Sur d’autres sites (4563)
-
FFMPEG-Unrecognized option 'hls_key_info_file'
12 mars 2017, par Hoang NamI use ffmpeg to convert file .mp4 into file hls(.m3u8). But i meet problem when i want add key to file. I run command in the directory. Folder include :
- File video have name : namhh_123.mp4
-
File "file.keyinfo" :
file.key
./file.key
9e1c83a7e2d04fe930cce5c8ef5c5bd0 -
File file.key
After that i run command :
ffmpeg -i 123_namhh.mp4 -hls_time 10 -hls_key_info_file file.keyinfo out.m3u8
Unrecognized option ’hls_key_info_file’.
Error splitting the argument list : Option not found*My ffmpeg’s version :
ffmpeg version 2.6.8 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-4)My OS : CentOS 7
Please help me how to solve this problem.Thanks !
-
avcodec/xbmenc : Pre-compute variables once for parse_str_int()
1er février 2021, par Jose Da Silvaavcodec/xbmenc : Pre-compute variables once for parse_str_int()
Some compilers are very intuitive, and others are not so much, so let's
pre-compute the variables e and keylen outside the for loop. Ensuring a
minor speed increase regardless of if compiler is smart enough to solve
this improvement for itself, or not.Signed-off-by : Joe Da Silva <digital@joescat.com>
-
Combine multiple images into a video using ffmpeg [closed]
13 avril 2021, par Mayank ThapliyalI want to combine multiple images into a video. I will use
ffmpeg
with Python as Python script will help me select images accordingly. And I have to fulfill multiple conditions :

- 

-
Frame-rate will be 0.2 (5 second for each image).


-
Screen-Ratio should be 18:9. But all images have different dimensions. And neither I want to crop nor I want to stretch them. So I want to pad them with a black background.


-
Ability to add background music.










But the issue is that I am not able to adjust images. Either images get stretched to full screen or they get cropped. So currently first I use
PIL
library to adjust images first then combine them withffmpeg
. But it takes a good amount of time and I don't like this approach.

Please help me solve my issue by only using
ffmpeg
(I guess that it will be fast enough).

-