Recherche avancée

Médias (91)

Autres articles (13)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (2894)

  • System will shutdown when running ffmpeg to convert mp4 to ogg in exec command in php

    23 avril 2014, par user270215

    I am using ffmpeg to convert my videos from mp4 to ogg,flv etc, So when i convert mp4 to ogg with the constant bitrate, sample rate and the dimensions.During when the command is running takes too much time. And after some particular(10mins) the system will shutdown and am running this in my localhost with the command . Kindly suggest any solution.

  • ffmpeg freezes system I/O [closed]

    28 août 2022, par dorforer

    I'm trying to save an RTSP stream on a server computer (on an up-board) to my local disk using FFmpeg.
This is the command I'm using :

    


    ffmpeg -loglevel quiet -xerror -fflags +igndts -rtsp_transport tcp -i rtsp://127.0.0.1:8554/test -avoid_negative_ts 1 -r 15 -c copy -f segment -segment_time 20 -segment_wrap 3 -reset_timestamps 1 $FILE_NAME


    


    The problem is after a while (it can take even 2 days), the system freezes with what seems like an IOWait problem, and there's nothing I can do (not even connecting via SSH) but hard restart the server.

    


    It happens randomly, and I can't reproduce it using a stress test for example.
It only happens with FFmpeg running.
I'm using ubuntu 16 and FFmpeg 2 but also tried it on FFmpeg 4 on Ubuntu 16.
Is there maybe a way to monitor it ?

    


    Thank you.

    


  • Restore the previous system path variable (windows)

    17 septembre 2022, par NaRas

    a question regarding messing with Windows Path variable.
My situation is quite specific :

    


      

    • I was trying to install ffmpeg according to this tutorial https://www.geeksforgeeks.org/how-to-install-ffmpeg-on-windows/
    • 


    • The last step was setting the path variable setx /m PATH "C:\ffmpeg\bin;%PATH%"
    • 


    • It worked, however afterwards I noticed that if I try to call python from the command prompt or the powershell if run as administrator, I started getting 'chcp' is not recognized as an internal or external command, (although works fine if run as user), indicating that something is wrong with PATH variables.
    • 


    • I looked into my variables and saw this edit.
    • 


    


    Path

    


    It seems to me that the command added the ffmpeg line to the system path and possibly overwritten the original, which is why there are issues when using command prompt as administrator. It probably should have added it to the user Path (not system Path variable)

    


    If that is the case, is there a way to restore the previous system Path variable. Maybe I can paste it from the user Path variable ?