Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (18)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6987)

  • ffmpeg hflip command causes video to go black

    28 octobre 2017, par user3713080

    Using the command ffmpeg -i test.mp4 -filter_complex "[0]hflip" new.mp4 makes the output video turn completely black in windows media player until you play the file a second time and then frames will be missing.

    If you append the mirrored video after another video it will just simply stop playing once it reaches the time in the timeline where the mirrored video starts. If you put the mirrored video before another video it will simply display the mirrored video as a black screen.

    Any suggestions on how to fix this or another solution i can use in C# to flip and merge videos ?

  • How to add black borders to video

    7 décembre 2023, par Arnaud Rochez

    So I'm using ffmpeg to convert a video to 19201080 px, I found two ways to do so, the first one would be to stretch the video to 19201080, but then it looks kinda stretched. I used this command for this :

    


    ./ffmpeg_darwin -i SRC -vf scale=1920:1080,setdar=16:9 DEST


    


    The other option is the same without setdar but this just adapts the resolution to the one it started from (1728*1080).

    


    I would like to fill the 192 pixels of the width with a black border. Is there some kind of option to do so ? Or is there maybe another command line that could achieve this ?

    


  • Create muted video and black screen video with FFmpeg

    2 mars 2021, par user2685832

    I'm trying to use FFmpeg to generate the following from a local mp4 file :

    



      

    • A copy of the original video with no audio
    • 


    • A copy of the original video with audio but without visuals (a black screen instead). This file also needs to be in mp4 format.
    • 


    



    After reading through the documentation I am struggling to get the terminal commands right. To remove the audio I have tried this command without any success :

    



    ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy


    



    Could anyone guide me towards how to accomplish this ?