
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (82)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (13579)
-
FFMPEG Concatenate multiple videos causes : Too many invisible frames
2 décembre 2019, par Silmoodi’m trying to concatenate multiple
.webm
files in a single one. One of these files is a simple black video generated with the next command :ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=5.2 black.webm
Then this is
concat_list.txt
file 'black.webm'
file '1.webm'
file '2.webm'
file '3.webm'Finally i try to concatenate files with :
ffmpeg -f concat -i concat_list.txt -c copy video.webm
The result is a long list of this message :
[AVBSFContext @ 0x7fcecef00180] Too many invisible frames
[AVBSFContext @ 0x7fcecef00180] Failed to receive packet from filter vp9_superframe for stream 0The problem seems to be the
black.webm
file. I removed it from theconcat_list.txt
and everything works fine.It’s important to mention that none of these files has an audio stream.
-
formula to calculate video dimensions for target aspect ratio
23 avril 2015, par Nevoxxi currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.
the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.
can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.
i’m using ffmpeg with the
"-vf scale=1280x720,pad=?:?:black"
command(sorry if my english is not that great)
-
Video stream analysis on the fly - advise ?
12 août 2020, par jakkolwiekI'm planning to develop a simple solution that would able me to perform a very basic video stream analysis on the fly. I've never done anything like that before, hence the very general and open question. The main focus is on checking if the stream is going without problems like - freeze frames, black screens and if the audio is there. Sync is out of scope. I read about open libraries like OpenCV and Xuggler, but they seem more complex than for my needs. FFmpeg is able to detect black screens, but not on the fly.



Is there any other open lib I could look into ? Could you advise me anything ? I'm thinking about using Java or Python. Or maybe both. Efficiency of the solution is out of scope, I'm focusing now only on freeze frames and black screens detection.



Any advise is welcome !



Best regards, 
Peter