Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (60)

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

  • 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

Sur d’autres sites (5925)

  • Merge pull request #3524 from ChuckForkJS/chuck-master

    11 juillet 2019, par blueimp
    Merge pull request #3524 from ChuckForkJS/chuck-master
    

    make basic-plus.html show correct UI when singleFileUploads is false

  • 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