Recherche avancée

Médias (91)

Autres articles (38)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4972)

  • Gradient is bad in video [closed]

    1er juillet 2023, par Andres Miguel Campos

    I'm trying to capture a css animation with gradient. But when capturing the video I get a bad quality

    


    I have used the following css for the screen

    


    

    

    &#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;&#xA;&#xA;&#xA;&#xA;  <div class="horizontal-gradient">&#xA;&#xA;  </div>&#xA;&#xA;&#xA;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;

    I have also used the following libraries or frameworks

    &#xA;

    &#xA;

    puppeteer-screen-recorder(NodeJS)

    &#xA;

    &#xA;

    &#xA;

    Canvas(JavaScript)

    &#xA;

    &#xA;

    &#xA;

    remotion.dev(Reac and Nodejs)

    &#xA;

    &#xA;

    &#xA;

    Obs

    &#xA;

    &#xA;

    But it still shows me poor video quality

    &#xA;

    Bad Image

    &#xA;

    Any support is welcome

    &#xA;

  • ffmpeg - zoompan causing stretching

    15 septembre 2020, par Sarmad S.

    I have two images as input, both are 1600x1066. I am vertically stacking them. Then I am drawing a box and vertically stacking that box under both of the image. Inside of the box I write text, then I output a video that is 1080x1920. Everything works well, until I use zoompan to zoom in on the images, I get a weird behavior (see images included below). basically all input images including the box stretchs (shrink) vertically and no longer fit the entire height of the video which is 1920.

    &#xA;

    The command (removed some drawtext commands from it) :

    &#xA;

    -filter_complex &#xA;"color=s=1600x1066:color=blue, drawtext=fontfile=font.otf: text=&#x27;My Text&#x27;:fontcolor=white: fontsize=30: x=50: y=50[box]; &#xA;[0]scale=4000x4000,zoompan=z=&#x27;min(zoom&#x2B;0.0015,1.5)&#x27;:x=&#x27;iw/2-(iw/zoom/2)&#x27;:y=&#x27;ih/2-(ih/zoom/2)&#x27;:d=125:s=1600x1066[z0];&#xA;[1]scale=4000x4000,zoompan=z=&#x27;min(zoom&#x2B;0.0015,1.5)&#x27;:x=&#x27;iw/2-(iw/zoom/2)&#x27;:y=&#x27;ih/2-(ih/zoom/2)&#x27;:d=125:s=1600x1066[z1];&#xA;[z0][z1][box]vstack=inputs=3"&#xA;

    &#xA;

    How do I fix this ? I want to zoom in without stretching the images.

    &#xA;

    Video before using zoompan : https://i.stack.imgur.com/kTBto.jpg

    &#xA;

    Video after using zoompan : https://i.stack.imgur.com/7faNn.png

    &#xA;

  • Correcting color cast with ffmpeg

    16 mai 2018, par Henry H

    I have two videos that have a pretty significant blue cast to them. I took some stills at the same time and I’m happy enough with the colors on those and I’d like to re-encode the videos, adjusting the colors to something similar to the stills.

    I understand I could either create a large collection of jpg images from the video and color correct them before reassembling them into a new video or I could use ffmpeg’s color level’s filter to do it directly. What I don’t know is how to get the numbers to pass to the filter. I’m assuming I want to do something like this :

    ffmpeg -i video.mov -vf "colorlevels=rimin=##/255:gimin=##/255:bimin=#/255:rimax=###/255:gimax=###/255:bimax=###/255, eq=gamma=#.##" -y out.mov

    How do I get the values to use for each of the r, g, and b min and max settings and gamma to use in place of the ###s ? Assuming this is the right approach, of course.

    Update : Perhaps this question would be better asked in a forum for gimp or photoshop. But I know how to adjust the color in those. What I need to know is how I translate those changes to what ffmpeg is expecting.