
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (48)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
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 -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (7458)
-
vaapi_encode_h265 : Ensure that ref pics are always in the RPS
25 janvier 2019, par Mark Thompsonvaapi_encode_h265 : Ensure that ref pics are always in the RPS
When making a new P-frame when B-frames are present the previous P-frame
is normally in the DPB because it will be referred to by subsequent
B-frames. However, this is not true if there are no B-frames, or in edge
cases where a GOP ends with two P-frames. Fix this by adding the direct
ref pics to the RPS explicitly.Fixes #7699.
Tested-by : Ullysses A Eoff <ullysses.a.eoff@intel.com>
-
How to draw - dynamic - "safe areas" in ffplay
16 juin 2023, par F.O.R.A.R.T.we need to preview videos with overlayed so-called "safe areas" according to this EBU document : SAFE AREAS FOR 16:9 TELEVISION PRODUCTION.


Here's the scheme for 1080p resolution :
1080p Safe Areas


Those consist of three different "zones", each with the same percentage size-to-the-edge of the video frame for any resolution :


- 

- Action Safe Area (GREEN box) : 3.5%
- Graphics Safe Area (RED box) : 5%
- 4:3 Safe Area (GREY box) : 16.25%








It should be easily achieveable using the drawbox command, but how can be dynamically adapted to any video resolution ?


-
Converted video is not played in Firefox
20 juillet 2023, par KitenI have a code that accepts the video file from the client converts it and saves it on the server with
.mp4
extension. Video processing is made usingfluent-ffmpeg
. Here is the code :

ffmpeg()
 .size('360x?')
 .videoCodec('libx264')
 .output()
 .on("end", () => {
 console.log(`Video saved with resolution 360`);
 res.json('Uploaded')
 })
 .on("error", (error) => {
 console.error(
 `Error saving video with resolution 360:`,
 error
 );
 res.status(500).json({ message: "Conversion error" });
 })
 .run();



The problem is that the resulting files are not played in the Firefox browser (but work in Microsoft Edge and Google Chrome).
Is it possible to change the parameters so that the resulting files are compatible with Firefox browser ?