Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (42)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

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

  • How to remove all metadata but keep audios and subtitles in ffmpeg ?

    6 décembre 2020, par hun1030

    I would like to removes all metadatas using ffmpeg, but keep every single audio and subtitle name. I have a code which works perfectly fine but it remove the audio and subtitle name (original subtitle name "English [eng] (subrip)" after i use the code "subrip").

    


    bat file :

    


    echo off
mkdir outputs
for %%a in ("*.mkv") do ffmpeg -i "%%a" -map_metadata -1 -map 0:a? -map 0:s? -map 0:v -c:v copy -c:a ac3 -c:s copy "outputs\%%~na.mkv"
pause


    


  • FFmpeg, Icecast and ice_name in Cyrillic

    6 juin 2021, par Alexandr Kuznetsov

    Sorry for my English, I hope you can understand me.

    


    To set stream names (-ice_name), I need to use Cyrillic characters. But on Icecast server I get hieroglyphs.

    


    If I use software other than ffmpeg, then everything is displayed fine. But I need to use ffmpeg exactly.

    


    Here's the source :

    


    "c:\ffmpegrec\ffmpeg.exe" -i rtmp://... -fflags nobuffer -vn -c:a libmp3lame -b:a 192K -content_type audio/mpeg -f mp3 -ice_name "Имя стрима" -ice_description "Описание стрима" -ice_public 0 -password ... icecast://...


    


    All this is run through a .bat file.

    


  • Input RTP stream to web html5 page ffmpeg

    6 août 2013, par Tommy

    I am working on school project and I need to transfere RTP from multicast IP and I would like play live stream on web page, preferrably in html5.

    So far i have started recording stream with ffmpeg. And it only recording audio. I have output of ffmpeg.

    enter image description here

    Addtionaly if you have any good sulution to transfere rtp stream from multicast domain to web page so give your ideas.

    Sorry for my english guys.

    Thank you in advance.