Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (66)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Build FFMPEG on MAC with my own license

    16 février 2015, par Ashish

    I am new in ffmpeg world. I want to build the ffmpeg exe on MAC os using its binary source. I have tried to build the exe and infact i succeeded in compiling exe but when i run that exe i got this line :

    ffmpeg version 2.2.4 Copyright (c) 2000-2014 the FFmpeg developers

    While surfing on internet i got an exe with different copyright holder. I also want to change that "the FFmpeg developer" with with my name. Please help me out how to do this ?
    Thanks.

  • How to concatenate multiple videos [closed]

    23 mai 2021, par Chand Hernan

    I am new to the programming world and I am trying to make a program to automate parte of my work

    


    I need to join multiple mp4 videos, I have tried to use moviepy but it takes a long time to export. They also recommended me to use ffmpeg but I could not

    


    There are 5 videos, and in total it gives a video of 9 minutes in high quality. I would like to lower the quality to be able to make the process faster

    


    An apology if my translation is not entirely correct

    


  • How can I really pick up the correct format when storing incoming stream ?

    3 février 2016, par Nyaruko

    I want to re-mux a incoming h264 stream. But how could I pick the correct AVOutputFormat for the AVFormatContext ?

    Currently I used :

    AVOutputFormat* fmt = av_guess_format(NULL, "xxx.avi", NULL);

    // Open the context
    //---------------------------------------------------------------------
    outFormatCtx = ffmpeg::avformat_alloc_context();

    //Set the output format
    //----------------------------------------------------------------------
    outFormatCtx->oformat = fmt;

    And everything works fine.
    However, if I change the first line to :
    av_guess_format("h264",NULL, NULL) ;
    the recorded stream cannot be played because of bad header/tailer.

    Is there a more smart way of picking the correct AVOutputFormat to be used ?