Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6154)

  • How to say ffmpeg ignore reboot of ip camera

    25 août 2016, par Svishchev Semen

    I record stream from ip camera with batch file :

    ffmpeg -rtsp_transport tcp -stimeout 50000000 -i  rtsp://192.168.50.50:554/user=admin&password=&channel=1&stream=0.sdp?real_stream" -b:v 900k -acodec copy -vcodec copy -r 30 -f segment -strftime 1 -segment_time 00:30:00 -reset_timestamps 1 -segment_format avi D:\Camera\level2\output_%%d-%%m_%%Y_%%H_%%M.avi

    When ffmpeg lost tcp connection ( 10 sec) to camera recording paused, then link goes up ffmpeg continues to write in the current file. But when i reboot camera by power off/on ffmpeg stop the record and crushes.

    How to say ffmpeg wait for signal from camera and not close record.

    Sorry for my English i’m from Russia.

  • FFMpeg Playlist with pipe for streaming [on hold]

    24 juillet 2017, par sword1st

    I’m trying to find a solution for stream multiple files without any connection breaks. I found this answer from KKetch :

    I managed to stream a static playlist of videos by using for each video a pipe (ex vid1.mp4 -> pipe1, vid2.mp4 -> pipe2 etc). Then i write into a single stream named pipe "stream" this way cat pipe1 pipe2 pipe3 > stream, and i use the stream pipe as input in FFMPEG to publish my stream.

    (I’m using windows. I don’t know to use named pipes. I searched a lot but i couldn’t do it. I can do it with vb.net if it’s possible. But i don’t know how :/ Sorry for my bad english)

    But i can’t reply his message cuz i don’t have enough reputation. I hope someone can help me how can i use pipes for input like playlist. Thanks !

  • How does one go about undoing an avformat_seek_file call in libavcodec ?

    2 juillet 2020, par John Allard

    I have an application written around libavcodec that sometimes attempts to seek ahead in a video while performing some work. The call to avformat_seek_file can only seek to a keyframe, so sometimes I end up in a situation where it ends up seek backwards from my current position in the decoding routine causing me to have to repeat work. For example, if I'm on frame 150 and I want to seek to frame 200, but the only key frames in the file are on frames 1 and 100, this call will have me seek back to frame 100, meaning I now have to decode 100 frames to get to 200 instead o 50 frames to get to 200 from my original decoding position of frame 150.

    


    Is there a way for me to tell avformat_seek_file to undo its last seek and reset me to my previous location ? Is there some other way for me to "save" my decoding state to undo this wrongful seek manually ?

    


    edit - it should be noted that my videos are always h264 encoded in an mp4 container.