Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (28)

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

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

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

  • Merge commit ’fb9a5bdc516b75b4ba1e36ca2223dec46571dea3’

    13 mars 2014, par Michael Niedermayer
    Merge commit ’fb9a5bdc516b75b4ba1e36ca2223dec46571dea3’
    

    * commit ’fb9a5bdc516b75b4ba1e36ca2223dec46571dea3’ :
    Prepare for 11_alpha1 Release

    Conflicts :
    RELEASE

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • Merge commit ’e4a77dc204f80a6876cbd91de9b71c30feebe119’

    1er décembre 2014, par Michael Niedermayer
    Merge commit ’e4a77dc204f80a6876cbd91de9b71c30feebe119’
    

    * commit ’e4a77dc204f80a6876cbd91de9b71c30feebe119’ :
    Make the RELEASE file match with the most recent tag

    Conflicts :
    RELEASE

    Not merged as the tag is not a FFmpeg version

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • PHP exec - echo output line by line during progress

    16 décembre 2014, par Bren1818

    I’m trying to find a way in which I can echo out the output of an exec call, and then flush that to the screen while the process is running. I have written a simple PHP script which accepts a file upload and then converts the file if it is not the appropriate file type using FFMPEG. I am doing this on a windows machine. Currently my command looks like so :

    $cmd = "ffmpeg.exe -i ..\..\uploads\\".$filename." ..\..\uploads\\".$filename.".m4v 2>&amp;1";
    exec( $cmd, $output);

    I need something like this :

    while( $output ) {
       print_r( $output);
       ob_flush();  flush();  
    }  

    I’ve read about using ob_flush() and flush() to clear the output buffer, but I only get output once the process has completed. The command works perfectly, It just doesn’t update the Page while converting. I’d like to have some output so the person knows what’s going on.

    I’ve set the time out

    set_time_limit( 10 * 60 ); //5 minute time out

    and would be very greatful if someone could put me in the right direction. I’ve looked at a number of solutions which come close one Stackoverflow, but none seem to have worked.