Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12186)

  • Live streaming with ffmpeg is gittery

    8 février 2017, par chubaka

    I started playing around with live streaming with ffmpeg to my rtmp server and was wondering what’s the best approach to it if my approach is sending a chunk of data every 5 or so seconds, because right now it’s kind of gittery and stuttery every time the server gets data.
    Would appreciate any advice or books/articles about this topic in general so I could get the basic idea.

  • Use ffmpeg to resize mp4 files in one folder under win10 but failed ? [duplicate]

    11 décembre 2023, par li_zhicheng

    This is my code in a .bat file :

    


    @echo off
set /a n=0
for  %%i in (D:\videos\*.mp4) do (
set /a n+=1
ffmpeg -i %%i -vf scale=-1:160 -an D:\videos\small\%%n.mp4
)


    


    I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4
The result is not what I expected.
Can you tell me how to fix it ?
Thanks !

    


    I tried set /a %n%+=1 but it doesn’t work.
I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4

    


  • Use FFmpeg to compare the same videos with different lenght

    5 mai 2016, par user3043703

    I have two videos taken from the same multimedia file, with identical video codec, bitrate, width x height, audio codec, etc... It would be possible, for example, to see if one video includes the second and to get the time where the second video starts to differentiate from the first ? I think that this job should be done by FFmpeg and the right process would be to compare just video or audio frames. I know some basic commands but really cannot understand how to perform this kind of comparison.