Recherche avancée

Médias (2)

Mot : - Tags -/map

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 (7295)

  • vitamio service

    11 mars 2014, par user1964369

    I know that Vitamio will not work without the following condition :

    if (! io.vov.vitamio.LibsChecker.checkVitamioLibs (this))
       return;

    But how does it add to the Service.
    I ran the demo I have everything works fine, but how to work in Servais

  • Record video stream with ffmpeg as a service

    19 juillet 2023, par Transporter

    I would like to use ffmpeg to record the video stream of a surveillance camera. For this I have a script to start the recording and a service for systemd. The idea is that if ffmpeg is stopped in between because the stream is interrupted, the service will be restarted automatically.

    


    Start recording (/media/HDD1/video/video-record.sh) :

    


    #!/bin/bash
ip=$1
codec=h264
res=1920x1080
out="/media/HDD1/video/$ip-$codec-$(date -u +"%Y%m%dT%H%M%S").mp4"
url="rtsp://192.168.4.$ip/axis-media/media.amp?camera=1&videocodec=$codec&fps=24&resolution=$res&compression=60&videozstrength=50&videoframeskipmode=drop"
ffmpeg -nostdin -i "$url" -acodec copy -vcodec copy $out


    


    Service file :

    


    [Unit]
Description=Record camera 101 to HDD

[Service]
Type=simple
ExecStart=/bin/bash /media/HDD1/video/video-record.sh 101
Restart=always
TimeoutStopSec=5

[Install]
WantedBy=multi-user.target


    


    The script works fine when I start and stop it manually. Starting the service also works without problems, only when terminating there are problems. In the log it says :

    


    Error closing file /media/HDD1/video/101-h264-20230719T094514.mp4: Immediate exit requested.


    


    Also, I can't play the video file anymore. Any idea ?

    


  • lavf doxy : add some general lavf information.

    11 décembre 2011, par Anton Khirnov

    lavf doxy : add some general lavf information.