Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (75)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • 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

Sur d’autres sites (10467)

  • Broadcast to youtube live via rtmp using vlc from terminal

    7 novembre 2016, par devprashant

    When run :

    cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
    '#rtp{dst=rtmp://a.rtmp.youtube.com/live2,name=pa1p-8c4m-zzvp-5j6t,mux=ts}'

    i got this debug : http://www.wepaste.com/vlcdebug/

    when run :

    cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
    '#std{access=rtmp,dst=rtmp://a.rtmp.youtube.com/live2/pa1p-8c4m-zzvp-5j6t,mux=ts}'  

    i got this debug http://www.wepaste.com/vlcdebug2/

    how to stream live video and audio to youtube using vlc from terminal.

    Resources followed :

    1. https://blog.vucica.net/2015/08/streaming-to-youtube-live-with-vlc-and-ffmpeg.html
    2. https://forum.videolan.org/viewtopic.php?f=14&t=130520&p=436913&hilit=rtmp+youtube#p436913
    3. Problems Starting VLC HTTP Stream with Servlet
    4. https://forum.videolan.org/viewtopic.php?f=4&t=112221&p=380232&hilit=rtmp+youtube#p380232
  • lavf/dashdec : add 3GPP TS26.247 probe in dash demuxer

    19 février 2020, par Jun Zhao
    lavf/dashdec : add 3GPP TS26.247 probe in dash demuxer
    

    Enabled the 3GP-DASH Release-10/Relase-11(3GPP TS26.247) profile
    to dash demuxer probe.

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/dashdec.c
  • Create dash manifest-file for mp4-videos

    10 juillet 2020, par Werner

    I took a video and created 3 versions of it in different sizes (including a watermark, no audio here) with :

    &#xA;

    ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 2400k -maxrate 2400k -bufsize 1200k -filter_complex "overlay=24:960,scale=640:480" -y "output_640_480.mp4"&#xA;&#xA;ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 3200k -maxrate 3200k -bufsize 1600k -filter_complex "overlay=24:960,scale=800:600" -y "output_800_600.mp4"&#xA;&#xA;ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 5300k -maxrate 5300k -bufsize 5300k -filter_complex "overlay=24:960,scale=1920:1080" -y "output_1920:1080.mp4"&#xA;

    &#xA;

    Now I want to create the manifest mpd file. The problem is that MB4Box is not available on the target-system, so I tried to do it with ffmpeg :

    &#xA;

    ffmpeg&#xA;-f dash -i "output_640_480.mp4"&#xA;-f dash -i "output_800_600.mp4"&#xA;-f dash -i "output_1920_1080.mp4"&#xA;-c copy -map 0 -map 1 -map 2&#xA;-f dash -adaptation_sets "id=0,streams=0,1,2"&#xA;-y&#xA;"manifest.mpd"&#xA;

    &#xA;

    But I get errors :

    &#xA;

    [dash @ 0000015ed965db40] Manifest too large: 6654253&#xA;output_640_480.mp4: Invalid data found when processing input&#xA;

    &#xA;

    The single videos do play without problems, but how do I create the manifest-file correctly ?

    &#xA;