Recherche avancée

Médias (91)

Autres articles (69)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7119)

  • fftools/ffprobe : stop using AVFrame.pkt_{pos,size}

    9 mars 2023, par Anton Khirnov
    fftools/ffprobe : stop using AVFrame.pkt_pos,size
    

    These fields are ad-hoc and will be deprecated. Use the recently-added
    AV_CODEC_FLAG_COPY_OPAQUE to pass arbitrary user data from packets to
    frames.

    Changes the result of the flcl1905 test, which uses ffprobe to decode
    wmav2 with multiple frames per packet. Such packets are handled
    internally by calling the decoder's decode callback multiple times,
    offsetting the internal packet's data pointer and decreasing its size
    after each call. The output pkt_size value before this commit is then
    the remaining internal packet size at the time of each internal decode
    call.

    After this commit, output pkt_size is simply the size of the full packet
    submitted by the caller to the decoder. This is more correct, since
    internal packets are never seen by the caller and should have no
    observable outside effects.

    • [DH] fftools/ffprobe.c
    • [DH] tests/ref/fate/flcl1905
  • Start service with start-stop-daemon on Ubuntu 16.04 with timeout

    26 février 2018, par Topper

    I have /etc/init.d/stream proces with start/stop/restart options.
    It’s run ffmpeg with daemon options taken from /etc/default/stream DAEMON_OPTIONS.
    Start at background (-b) crate pid (/var/run/stream/stream.pid) etc.

    How could I add timeout 60 seconds to be sure that stream will be forcebly stopped if exceed 60 sek. timeout ?

    Can’t run "—exec timeout 60 ffmpeg" because service runs only timeout command.

    I’m I missing something or try to use wrong command ?

  • Why does this ffmpeg command line stop after ten minutes

    24 novembre 2022, par thrag

    I have this command line :

    



    ffmpeg -i rtsp://192.168.2.201/mpeg4/media.amp -vcodec vp8 -map 0 -t 60 -f segment -segment_time 5 -segment_format avi -segment_list slist.txt "out%03d.avi"


    



    It is reading a stream from an axis 211a security camera.

    



    It works great for exactly ten minutes. And them FFPMEG starts to report missing packets.

    



    I've checked the camera and all the setting are correct to run continuously. Also, if I view this feed from VLC it will run on for ever.

    



    What is it that is stopping FFMPEG after exactly 10 minutes.