Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (21)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour 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 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (6079)

  • How to combine pictures with an audio into a video by ffmpeg ? [duplicate]

    3 septembre 2019, par Saeron Meng

    I recorded my voice for a powerpoint (or a bunch of pictures). Now I have all materials and a list of starttimes and endtimes of each picture, but I don’t know how I should use the command line to apply ffmpeg so as to combine those to a video.

    I have searched on the Internet, some of the websites tell me to create a txt file containing the starttime and endtime of each picture and use the concat option of ffmpeg. But I don’t know how to write the txt and achieve it.

    Previously, I have an xml file containing starttimes and endtimes, to indicate my pictures :

    <page title="1" height="540" width="960" starttimestamp="794.852" speedup="true" step="65535" stoptimestamp="1008.887" loc="hls/128345566_0.png"></page>
    <page title="2" height="540" width="960" starttimestamp="1008.887" speedup="false" step="0" stoptimestamp="1078.888" loc="hls/128345566_1.png"></page>
    <page title="3" height="540" width="960" starttimestamp="1078.888" speedup="false" step="0" stoptimestamp="1081.206" loc="hls/128345566_2.png"></page>

    How to write the concat list and apply ffmpeg ? (just format will be okay)

  • FFMPEG - why zoompan causes stretching

    14 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 weird behavior. basically all input images including the box stretchs (shrink) horizontally 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=1600x1600[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;

    Before using zoompan this is how the video looks like (I want to keep it this way while zooming in the images) :&#xA;enter image description here

    &#xA;

    After using zoompan this is how the video looks like :

    &#xA;

    With zoompan

    &#xA;

  • FFMPEG - why zoompan causes unexpected stretching ?

    14 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 weird behavior. 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;

    Before using zoompan this is how the video looks like (I want to keep it this way while zooming in the images) :&#xA;enter image description here

    &#xA;

    After using zoompan this is how the video looks like :

    &#xA;

    With zoompan

    &#xA;