Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (48)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8086)

  • Joining h264 MP4 with ffmpeg Concat without re-encoding

    4 décembre 2013, par Lisa Jacobs

    I am trying to write a batch file to stitch 3 MP4 videos together without having to re-encode them, using a text file mylist.txt :

    file 'video1.mp4'
    file 'video2.mp4'
    file 'video3.mp4'

    I am stitching with : ffmpeg -f concat -i input.txt -c copy output.mp4 but for some reason the second video remains with a blackscreen and/or like if the stream was corrupted. It's like there was no keyframe at the beginning of video2.mp4 ? Video2.mp4 plays fine and does not seem to be corrupted.

  • Stitching 2 videos together side-by-side with ffmpeg in Android [on hold]

    19 juillet 2018, par A. Munny

    I am currently writing an app for Android that is supposed to take two video clips and stitch them together side-by-side into a single file (such that the user can download a single video file that shows these two side-by-side videos playing simultaneously). I was planning on using ffmpeg to achieve this, but could not figure out how to do this. Does anyone know how to achieve something like this, if at all possible ? Additionally, if there is a way to get it done easier using something other than ffmpeg, that solution would also be greatly appreciated. Thank you !

  • ffmpeg concat particular videos from text file

    29 juin 2022, par tejas netradyne

    i wanted to concat only 1st and 4th video from my txt file 'list_of_videos' where my txt file looks like this :

    


    


    file 'video1.mp4'
    
file 'video2.mp4'
    
file 'video3.mp4'
    
file 'video4.mp4'

    


    


    currently i am able to stitch all videos from 1 to 4 using :

    


        ffmpeg_command= 'ffmpeg -f concat -safe 0 -i %s -c copy %s' % \
                            (
                                list_of_videos,
                                video_path
                            )