Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (59)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (10856)

  • How to Fix Problem Drawer Text and Join with FFmpeg

    13 août 2019, par Marcos QP

    I have two short videos with good state (input1.mp4, input2.mp4).
    I use ffmpeg to edit videos.

    Part 1
    I combine two videos, it works correctly

    Part 2
    I draw text on input1.mp4, result output1.mp4, it works correctly.
    I join two videos (output1.mp4, input2.mp4), its join success. But result video is corrupt.

    ------------------------------------------------------------------

    I use these comands ffmpeg

    Combine Videos
    ffmpeg -y -f concat -safe 0 -i list.txt -c copy merged.mp4

    Draw Text on Video
    ffmpeg -y -i input1.mp4 -vf "drawtext=fontfile=/Windows/fonts/arialbd.ttf : text=’Some Text’ : fontcolor=white : fontsize=50 : box=1 : boxcolor=black@0.5 : boxborderw=5 : x=(w-text_w)/2 : y=(h-text_h/2)" -codec:a copy output1.mp4

    ------------------------------------------------------------------

    Please i need your help to drawer text and join.
    Sorry my bad english. I am still learning.
    Thanks.

  • Revision 2ab05cf778 : Updated NEWS file.

    22 novembre 2011, par Marc Noirot

    Changed Paths :
     Modify /NEWS



    Updated NEWS file.

  • Use HLS from Wifi device as input to stream over 4G

    26 février 2017, par pbdev

    I’m building an Android app that streams video from a Wifi device to a Wowza server. It should be quite simple but I can’t figure out how to use both Wifi and 4G at the same time. The device I’m using is a Samsung S5 with Android 6.0.1. To sum it up, this is the goal :

    1. Fetch the video stream from a GoPro device over Wifi.
    2. Send the video stream to a Wowza server over 4G.

    When connected to the GoPro’s Wifi network I can ping the GoPro and see the stream in a MediaPlayer. Since I’m connected to a Wifi device that doesn’t provide internet access, I can’t ping my Wowza server. Once I’ve disabled Wifi this is no problem, by using FFmpeg I can reach the Wowza server over 4G.

    This is the FFmpeg command I want to use to copy the stream to the Wowza server, where 10.5.5.9 is the IP-address of the GoPro :

    ffmpeg -i http://10.5.5.9:8080/live/amba.m3u8 -acodec aac -ar 44100 -ab 48k -vcodec copy -f flv rtmp://username:password@my-wowza-server.com:1935/my-app/my-stream

    If I enable Wifi and connect to the GoPro, 10.5.5.9 is reachable but my-wowza-server.com isn’t. The Samsung S5 provides a Smart network switch which makes the Wowza server reachable but the connection to the GoPro gets lost.

    Is there any way to bind 10.5.5.9 to the Wifi interface of the phone and bind my-wowza-server.com to the cellular interface ?