
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (17)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (4059)
-
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).

-
-
How to stream the video from one PC to another with an acceptable quality and synchronization ?
15 juin 2021, par ErickSkrauchI have the following task : to organize the broadcast of several gamers on the director's computer, which will switch the image to, to put it simply, the one who currently has more interesting gameplay.


The obvious solution would be to raise an RTMP server and broadcast to it. We tried that. The image quality clearly correlates with the bitrate of the broadcast, but the streams aren't synchronized and there is no way to synchronize them. As far as I know, it's just not built into the RTMP protocol.


We also tried streaming via UDP, SRT and RTSP protocols. We got minimal delay but a very blurry image and artifacts from lost packets. It feels like all these formats are trying to achieve constant FPS and sacrifice the quality.


What we need :


- 

- A quality image.
- Broken frames can be discarded (it's okay to have not constant FPS).
- Latency isn't important.
- The streams should be synchronized within a second or two.










There is an assumption that broadcasting on UDP should be a solution, but some kind of intermediate buffer is needed to provide the necessary broadcasting conditions. But I don't know how to do that. I assume that we need an intermediate ffmpeg instance, which will read the incoming stream, buffer it and publish the result to some local port, from which the picture will be already taken by the director's OBS.


Is there any solution to achieve our goals ?


-
How to introduce artificial noise in the videos using ffmpeg ?
17 juin 2021, par ashish14I am trying to introduce artificial noise in the videos so as to simulate real-world behaviour. The sources of noise I am currently considering are :


- 

- Quality of video

- 

- Modifying video properties such as frame rate, resolution, bit rate, codecs and compression.




- Recording Conditions

- 

- Factors such as lighting, brightness, contrast, darkness, blurriness, color etc.










So far I have tried changing the brightness to replicate different lighting settings. I used this command

ffplay -vf eq=gamma=1.5:brightness=0.3:saturation=20 P2_Frontal_3_A.MP4
to change the values of brightness.

Questions :


- 

- Does modifying the brightness like above make sense to simulate different lighting conditions ?
- What other properties should I change for blurriness, contrast and darkness ?






- Quality of video