Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (105)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10994)

  • FFMPEG - Streaming GoPro4 to RSTP

    20 mai 2017, par Winged

    Greeting !
    I’m planning to capture a realtime streaming video from GoPro4 and load it into TouchDesigner in order to use this footage in a projection mapping project.

    So far I was able to play GoPro4 stream using ffplay doing as follows :
    1. Host GoPro4 WiFi hotspot.
    2. Connect a laptop WiFi to GoPro4’s hotspot.
    3. Restart GoPro stream service by opening ’http://10.5.5.9/gp/gpControl/execute?p1=gpStream&c1=restart’ in s browser.
    4. Run ffplay command in order to open ffplay stream video window : ’ffplay -an -fflags nobuffer -f:v mpegts -probesize 8192 rtp ://10.5.5.9:8554’

    The next step I opt to make it to re-stream this signal into RTSP protocol so TouchDesigner could receive this signal.

    And here is my question - how to re-stream this input to RTSP ?

  • FFmpeg permission denied

    22 septembre 2016, par nikoz84

    I’m try to execute this PHP code

    exec("/root/bin/ffmpeg -version 2>&1", $output);
    print_r($output);

    But always the output return permission denied

    Array ( [0] => sh: /root/bin/ffmpeg: Permission denied )

    and the output from library PhpVideoToolKit

    sh: /root/bin/ffmpeg: Permission denied

    how can i give permission for execute to my apache service ? i’m used CENTOS

  • How to remove/reduce pixelation of mjpeg stream in FFMPEG

    25 juillet 2017, par Luis Ruiz

    I’m working on a server side re-streaming service for some IP Cameras.
    I’m using ffserver on Linux to serve the streams and ffmpeg on Windows to feed.
    I’m getting the cameras video (H264) using rtsp.

    My ffserver config example is as follows

    <feed>
    File ./test.ffm
    </feed>

    <stream>
    Feed test.ffm
    Format mpjpeg
    VideoFrameRate 3
    VideoSize 704x480
    NoAudio
    FileMaxSize 100k
    VideoHighQuality
    </stream>

    and the way ffmpeg is feeding :

    ffmpeg -rtsp_transport tcp -i "rtsp://admin:admin@192.168.1.12:554/cam/realmonitor?channel=1&amp;subtype=0" -vcodec copy -acodec copy "http://192.168.1.101:8090/test.ffm"

    Resulting video is Very pixelated and it differs from the real image.

    Cameras’ configuration are as follows :

    Resolution: D1 (704*480)
    FrameRate: 3
    BitRate: 256k
    BitRateType: Variable

    Is there anything i’m missing or doing wrong ?

    Thanks in advance for any help