Recherche avancée

Médias (91)

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6575)

  • ffmpeg start_time is negative

    8 décembre 2016, par Alex Bollbach

    I’m using ffmpeg to segment a video by start/end times. For example, I have a set of time [1], and I’d call ffmpeg 3 times here to create the three 2 second videos at times 0, 2, and 4.

    My problem is that these times (which are correct) are not correctly segmenting the video. When I inspect the stats of the video with ffprobe -i test.mov -show_format, I noticed start_time=-0.381044. I also know that this seems to be caused by trimming a video in QuickTime to produce this video. In order to correct this, I must add (start + 0.381044) somewhere in my code, and the output is fine.

    So, why is the start_time set to a negative value by the quicktime trimming ? How can I set start_time=0, so my code can work without the + 0.381044 ?

  • How to convert multiple 360 images to video

    9 août 2021, par Mashpy Rahman

    I need to convert multiple 360 images to video. Images will rotate from left to right. As like as this -
https://www.youtube.com/watch?v=99gXgkkFtA0

    


    I tried to do this using ffmpeg. but failed. Can you give me any idea or any website service link that I can make videos from 360 images.

    


  • ffplay, rtsp and tcp transport protocol

    27 juillet 2022, par Denis Gottardello

    I have a problem on connect to a rtsp camera using ffplay.
The camera is under a router that permits only the TCP protocol.
I can watch the camera using ffplay only if I am in the same network of the camera.
So, when I am out, using this command line

    


    ffplay rtsp://address:554/onvif1


    


    or this

    


    ffplay -rtsp_transport tcp rtsp://address:554/onvif1


    


    I cannot watch the camera.
This is the output of ffplay (the latest).

    


    [rtsp @ 059ee680] Nonmatching transport in server reply  0B f=0/0
rtsp://address:554:/onvif1: Invalid data found when processing input


    


    Trying with VLC and I can watch the camera without any problem, both when I am in the same network or when I am out. The VLC output says that VLC uses TCP.
Has someone got a suggestion ?