Recherche avancée

Médias (91)

Autres articles (87)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’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 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (12266)

  • resize video using ffmpeg compiled for android libraries [closed]

    19 juillet 2012, par SergeyD

    In my native android project I need to reduce a size of video file.

    I've already built ffmpeg shared/static libraries, but I don't have any idea how to use it. Most of examples for ffmpeg usage are for command line.
    So, can anybody provide me sample code or ffmpeg tutorials link of how to integrate these libraries into my project and use them.

    I'm working with Windows7, Eclipse IDE, cygwin.

    Thanks in advance !

  • Add text or draw lines on video

    19 février 2015, par Hayk Nahapetyan

    I’m searching for some library or tool for android for editing videos(e.g. drawing lines, adding text on some part of it). I tried to get frames of the video and add the text on some of them but it took a lot of time (8 seconds for video with 20 seconds length). So is there any way for editing video in a short time ?

    thanks in advance

  • How to scale watermark with FFMPEG ?

    25 avril 2022, par Eduardo

    I am using ffmpeg to change the resolution and type(mp4) of my videos but I also want to add a watermark on them, but the problem is that the size of the watermark is different in every video I upload (on some videos the watermark becomes small and on other videos become bigger).

    


    Is there a way to add a watermark with a proportional scale to the videos so I don't have different sizes of the watermark ?

    


    Here's my code :

    


    ffmpeg -i input_video.avi -i watermark.png -s 1280x720 -filter_complex overlay=x=(main_w-overlay_w):y=(main_h-overlay_h) output_video.mp4

    


    Thanks in advance :)