Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (8414)

  • File size validation performance improvements. Thanks @dougdomeny

    6 novembre 2013, par blueimp
    File size validation performance improvements. Thanks @dougdomeny
  • FFMPEG : Select minimum of Original and Specified Bitrate

    5 juin 2021, par tezz

    I'm transcoding an RTMP stream using FFMPEG. I want the output to have a bitrate of 600k(approx) if the original bitrate is greater than 600k and otherwise the output should have the original bitrate. I've looked at -minrate, -maxrate, -bufsize. But don't think they are applicable here. Is there any way to achieve this, preferably in single FFMPEG command ?

    


  • How can I concatenate different videos while maintaining the original display and aspect ratio ?

    11 décembre 2019, par Lauren

    Is it possible to concatenate different videos with different aspect ratio into a single video ? And also in the end the final video would maintain the original aspect ratio of each part.

    I’ve tried the following FFmpeg command :

    ffmpeg -i 1.mp4 -i 2.mp4 -y -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=unsafe=1:n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" out.mp4

    I’m using unsafe=1 which almost works.

    The only issue is that some videos stretch.
    So, how can I concatenate different videos while maintaining the original display and aspect ratio ?