Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

Sur d’autres sites (10433)

  • FFMpeg Segment for Quicktime

    30 mai 2015, par Gavin Hinfey

    I have a 20 sec h264 .mov with edits every 2 seconds. Download the video here : http://we.tl/OsLdXMtkPe.
    I need to segment the video on the cuts. Using FFProbe I have found the cuts in frames.

    $ffmpeg -i Asia.mov -force_key_frames 88,134,180,223,271,317,365,410,455,499,549,588 -codec:v mpeg4 -codec:a pcm_s16le -map 0 -f segment -segment_frames 88,134,180,223,271,317,365,410,455,499,549,588 out%03d.mov

    The resulting video plays correctly only in windows media player and vlc.
    It does not play correctly in Quicktime 7 or iTunes.

    How can I split this video at these frame intervals with an iTunes compatible result ?

    Thanks
    Gavin

  • Free Software Foundation Supports WebM

    19 janvier 2011, par noreply@blogger.com (John Luther)

    We’re excited that the Free Software Foundation (FSF) has joined the growing community of WebM supporters. You can read the FSF’s announcement "No double standards : supporting Google’s push for WebM" at their web site.

  • ffmpeg randomly stops recording rtmp stream

    14 novembre 2022, par M9A

    I am trying to record a rtmp stream using ffmpeg. On the whole it records the stream fine but every so often it stops recording the stream and when I then go to record it again, it will only record around a second or 2 before it stops again. This usually goes on for like 10-15mins. In this time if I want to record the stream, I would have to manually record 1-2 seconds each time. This sounds like it is a server issue - perhaps there is a mechanism that cuts off the stream every few seconds.

    


    In the case where the stream cuts off, is there a way to keep trying and recording all of these 1-2 second segments rather than me doing it manually ? Doing it manually creates gaps in the recording due to the time taken to connect and record the stream. I even tried running the command in a loop but even with that there are gaps in the video.

    


    The code I am using to record the stream is as follows :

    


    ffmpeg -i "rtmp://example.com/stream?id=12345" -vcodec copy -acoded copy "output.mp4"


    


    When it is recording fine and cuts off the first time, there is no error given. It's like the stream came to an end so it stops recording. The subsequent times where I can only record 1-2 seconds are the same - there is no error

    


    As there are no error messages such as timeout or connection errors, I cannot even run flags on the command to retry recording.