Recherche avancée

Médias (91)

Autres articles (20)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3926)

  • ffmpeg not working with http_proxy

    17 janvier 2017, par user779159

    My application is trying to access some media using ffmpeg, but the http_proxy option doesn’t seem to work.

    I’m using a new version 3.2.2, and although http_proxy isn’t documented in the man page, it does seem to recognize it. For example, if I misspell it, like -http_proxyyy, it says Unrecognized option 'http_proxyy'.

    But if I enter a non-existent proxy (e.g. -http_proxy 1.2.3.4:5678), it is able to access the media anyway rather than giving an error. So the option doesn’t seem to be working. Is it something wrong on my end ? I tried -http_proxy https://1.2.3.4:5678 and -http_proxy http://1.2.3.4:5678 but they still download the media when they shouldn’t.

  • ffmpeg multiple outputs is working only on the forst rtmp

    10 janvier 2021, par Antonio Gargiulo

    I have try stream with ffmpeg with output to differents rtmp servers like that

    


    ffmpeg -re -i nameoffile.mp4 -vcodec libx264 -g 60 -c:a aac -b:a 160k -ar 44100 -strict -2 -f flv \
-f flv rtmp://rtmp.1.com/code \
-f flv rtmp://rtmp.2.com/code \
-f flv rtmp://rtmp.3.com/code \
-f flv rtmp://rtmp.4.com/code \
-f flv rtmp://rtmp.5.com/code \


    


    The problem is... is working only the first one but not the others

    


  • ffmpeg - scale not working on all my cases

    24 avril 2017, par Thanh Dao

    I’m using ffmpeg to scale and change speed of my videos.

    And below script was not worked :

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.666*PTS[i]; [i]scale=640:640[j]; [0:a]atempo=1.5[p]" -map "[j]" -map "[p]" output.mp4 2>&1

    More simple script I testes also not working

    ffmpeg -i input.mp4 -filter_complex "scale=640:640" output.mp4 2>&1

    Original video have resolution 1280x720, and I want to resize to 640x640, with padding 320 left and right.

    What are my wrongs in script ?
    Sorry for my bad English !