Recherche avancée

Médias (91)

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5087)

  • store more vars than we removed

    16 août 2010, par Johann

    store more vars than we removed

  • How to receive and store rtsp data

    23 juin 2020, par Yves

    I'm a newbie on video-stream process.

    


    My goal is to store the video-stream data, formatted with RTSP protocol.

    


    Here is what I've done :

    


    First, I execute ffserver -f ffserver.conf to run the server. Here is the file of ffserver.conf :

    


    HTTPPort 8090&#xA;RTSPPort 5554&#xA;HTTPBindAddress 0.0.0.0&#xA;MaxHTTPConnections 2000&#xA;MaxClients 1000&#xA;MaxBandwidth 30000&#xA;CustomLog -&#xA;NoDaemon&#xA;#NoDefaults&#xA;&#xA;#2. config ffm file&#xA;<feed>&#xA;File /tmp/feed1.ffm&#xA;FileMaxSize 100M&#xA;</feed>&#xA;&#xA;#3. http&#xA;<stream>&#xA;Feed feed1.ffm&#xA;Format flv&#xA;</stream>&#xA;&#xA;# RTP&#xA;<stream>&#xA;Feed feed1.ffm&#xA;Format rtp&#xA;VideoCodec mpeg4&#xA;VideoFrameRate 15&#xA;VideoBufferSize 80000&#xA;VideoBitRate 100&#xA;VideoQMin 1&#xA;VideoQMax 5&#xA;VideoSize 352x288&#xA;PreRoll 0&#xA;NoAudio&#xA;</stream>&#xA;&#xA;#4. stat.html&#xA;<stream>&#xA;Format status&#xA;ACL allow localhost&#xA;ACL allow 192.168.0.0 192.168.255.255&#xA;</stream>&#xA;

    &#xA;

    Then, I execute ffmpeg -i ./test.mp4 -vcodec libx264 -acodec aac http://localhost:8090/feed1.ffm.

    &#xA;

    Finally, I can configure rtsp://localhost:5554/test1.mpeg4 in VLC player and play the video.

    &#xA;

    Now, what I need is to store the RTSP data on the disk, instead of playing it with some player like VLC.

    &#xA;

    For example, I want to receive the RTSP data and store it into fixed-size files. If I've received 100M RTSP data, I would like to store it into 10 10MB files. And in the future, I can extract the data from the 10 files and play the video.

    &#xA;

    How to achieve this ? What should I do ?

    &#xA;

  • Store arguments of a command in variable [duplicate]

    2 décembre 2022, par user206904

    I am trying to store the arguments of a command in a string instead of calling the function directly with the parameters but it seems that Powershell is not handling the string properly

    &#xA;

    ffmpeg -v quiet -stats ...  # works&#xA;&#xA;$var = "-v quiet -stats"&#xA;&#xA;ffmpeg $var ... #does not work&#xA;

    &#xA;

    I get :

    &#xA;

    Unrecognized option 'v quiet'. Error splitting the argument list : Option not found

    &#xA;

    What is the correct way to handle this ?

    &#xA;

    Thanks

    &#xA;