Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (39)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4190)

  • Server side video mixing

    16 mars 2014, par Nicolas Goy

    I have a serie of video files encoded in mpeg2 (I can change this encoding), and I have to produce a movie in flash flv (this is a requirement, I can't change that encoding).

    One destination movie is a compilation of different source video files.

    I have a playlist defining the destination movie. For example :

    Video file        Position        Offset       Length
    little_gnomes     0               0            8.5
    fairies           5.23            0.12         12.234
    pixies            14              0            9.2

    Video file is the name of the file, position is when the file should be started (in the master timeline), offset is the offset within the video file, and length is the length of the video to play. The numbers are seconds (in double).

    This would result in something like that (final movie timeline) :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   **************
    fairies               *********************
    pixies                           *****************

    Where video overlaps, the last video to be added override the last one, the audio should be mixed.

    The resulting video track would be :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   *******
    fairies               ***********
    pixies                           *****************

    While the resulting audio would be :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   11111112222222
    fairies               222222211112222222222
    pixies                           22222222221111111

    Where 1 or 2 is the number of mixed audio tracks.

    There can be a maximum of 3 audio tracks.

    I need to write a program which takes the playlist as input and produce the flv file. I'm open to any solution (must be free/open source).

    An existing tool that can do that would be the simplest, but I found none. As for making my own solution, I found only ffmpeg, I was able to do basic things with it, but the documentation is terribly lacking.

    It can be any language, it doesn't have to be super fast (if it takes 30 minutes to build a 1h movie it's fine).

    The solution will run on opensolaris based x64 servers. If I have to use linux, this would work too. But windows is out of the question.

  • FFMpeg Drawtext black pixels behind the font

    21 janvier 2023, par sweetngx

    I burn the name of the movie with drawtext to my movies converted with FFMPeg, but I noticed that the black pixels around the font are disturbing, as seen in the picture. I don't know if this is a missing line of code or the nature of drawtext itself. Do you think there is a solution to make the movie name more legible ?

    


    enter image description here

    


  • FFmpeg .bat file syntax

    12 juillet 2022, par Jeandré

    I have the following command for overlaying a watermark (png image) on a video. I run it from a windows .bat file and it works fine as long as I keep the png file in the same folder as my script (like this movie=easy_vacation_text.png).

    


    %FFMPEGPATH% -i "C:\\Users\\me\\Downloads\\b2ff1bb2-3cd4-41c5-a1ee-ea6b7c066011.mp4" -y -vf "scale=1280:720 [main]; movie=easy_vacation_text.png [watermark]; [watermark]scale=1000x200 [watermark2]; [main][watermark2] overlay=(main_w/2)-(overlay_w/2):main_h-overlay_h-10 [out]" %OUTDIR%/outfile.mp4



    


    As soon as I try to reference the png from a different folder like (like this movie=C :\Users\me\easy_vacation_text.png), it breaks :

    


    %FFMPEGPATH% -i "C:\\Users\\me\\Downloads\\b2ff1bb2-3cd4-41c5-a1ee-ea6b7c066011.mp4" -y -vf "scale=1280:720 [main]; movie=C:\\Users\\me\\easy_vacation_text.png [watermark]; [watermark]scale=1000x200 [watermark2]; [main][watermark2] overlay=(main_w/2)-(overlay_w/2):main_h-overlay_h-10 [out]" %OUTDIR%/outfile.mp4


    


    I tried different variations of putting quotes around the path (C :\Users\me\easy_vacation_text.png) but I can't figure out the problem.

    


    Any ideas what I'm doing wrong ?