Recherche avancée

Médias (91)

Autres articles (61)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • marge video and audio using ffmpeg - the video invisible in some cases

    17 janvier 2018, par Yanshof

    I have video (.avi) and audio (.wav) and i’m using ffmpeg to as a mux to marge them one file (*.avi)

    When the audio is too long then the video - i see that the video is not visible.

    The input of the ffmpeg running is video file and array of audio files with delay (i check the delay and its ok)

    In some cases the video is visible and in some cases its not.
    I can’t say find some rule to say when its ok and when its not.

    1. why its happened ?
    2. how to fix it without cut the audio to end in same time the video end ?
  • Insert Video Clip in another Video using ffmpeg

    22 avril 2014, par ZafarYousafi

    I want to insert a video clip in another video at specified position (after n seconds). I am thinking to slice the main video first and then concatenate the pieces again. But this solution is not looking promising to me as what if I have to insert the video clips at multiple locations in the main video ? Is there any better way of doing this in ffmpeg ?
    thanks

  • Encoding video live ? (Showing frame which i will overlay on camera while recording video)

    18 juillet 2019, par Marko Miljkovic

    I’m not sure I can really explain this the best way I can, but I’ll try my best.
    I want to create custom camera activity, which will capture video from camera, and show some image over that video, and actually encode that image in video. I`m pretty sure I need to use ffmpeg, but, I want to know, is there a way that I can record a video and an image together, and encode it realtime, or do I need to go around, make camera activity, put image over video, as another view, get its coordinates, and then encode it in video using this command :

    ffmpeg -i movie.mp4 -i logo.png -filter_complex overlay output.mp4

    It this command is the only way, how would I add more than one image as overlay ?