Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (64)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

Sur d’autres sites (5956)

  • Send email once FFMPEG video conversion has completed (php)

    14 juin 2012, par Dino

    I have a basic php script which converts an avi using ffmpeg :

    <?php
    if (exec("/usr/bin/ffmpeg -i testvideo.avi -sameq -ar 22050 convertvideo.mp4 2> logfile.log")){
    echo "Success";
    }else{
       echo "Error";
    }
    ?>

    now as an extension to this I would like to use php to check if the file is still being converted if not an email should be sent can anyone advise how I can achieve this ?

    Also despite using the code above and the file being converted successfully, the output I always get is "Error", can anyone help with this as well ?

    Thanks

  • How to discard broken frames from MP4 file with FFMPEG

    4 novembre 2024, par digitalfootmark

    I have a partially broken MP4. Sometimes the playback just freeze, so that only the top of the content have some garbage and the rest of the frame is empty.

    


    Is there any tricks in ffmpeg to remove those frames ?

    


    Naturally I have tried all kind of basic things, like repackaging the mp4 and re-encode it to mp4.
The file was not playable originally so it was fixed with untrunk first. And got the same results also with https://Fix.Video

    


    I believe answering this question is impossible without having a sample file.

    


  • How do I use ffmpeg with live streaming from an IP camera [closed]

    28 février 2013, par Murali Hariharan

    My question is very basic because I am a newbie to all these
    technologies.

    I have an IP camera connected to my internal network.

    http://192.168.1.20/videostream.cgi?user=admin&pwd=

    ...gives a live streaming view in Firefox or Internet Explorer.

    Now I want to record the live stream into a video.

    The parameters to be supplied are begin_time, end_time, format of video etc.

    How do I accomplish this ?

    I appreciate any guidance.