Recherche avancée

Médias (91)

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10037)

  • developer.texi : Suggest a git clone if the patch review process doesnt work out

    23 août 2011, par Michael Niedermayer

    developer.texi : Suggest a git clone if the patch review process doesnt work out

  • Zeranoe ffmpeg not work with PHP

    12 mars 2014, par user3142680

    I download and install windows ffmpeg in C:/ffmpeg. now i have this class for php ffmpeg without ext from HERE. i check ffmpeg using cmd command this worked for me but ffmpeg not work using php class.

    PHP CLASS HERE

    PHP Code :

    <?php
    /**
    *   include FFmpeg class
    **/
    include DIRNAME(DIRNAME(__FILE__)).'/src/ffmpeg.class.php';

    /**
    *   get options from database
    **/
    $options = array(
       'duration'  =>  99,
       'position'  =>  0,
       'itsoffset' =>  2,
    );
    /**
    *   Create command
    */
    $FFmpeg = new FFmpeg( "C:\ffmpeg\bin\ffmpeg.exe" );
    $FFmpeg->input( 'C:\xampp\htdocs\video\ff\examples\original.avi' );

    $FFmpeg->transpose( 0 )->vflip()->grayScale()->vcodec('h264')->frameRate('30000/1001');
    $FFmpeg->acodec( 'aac' )->audioBitrate( '192k' );
    foreach( $options AS $option => $values )
    {
       $FFmpeg->call( $option , $values );
    }
    $FFmpeg->output( 'C:\xampp\htdocs\video\ff\examples\new.mp4' , 'mp4' );
    print($FFmpeg->command);
    ?>

    print command :

    C:fmpeg\binfmpeg.exe -y -i C:\xampp\htdocs\video\ff\examples\original.avi -vf transpose=0,vflip -pix_fmt gray -vcodec h264 -r 30000/1001 -acodec aac -ab 192k -t 99 -ss 0 -itsoffset 2 -f mp4 C:\xampp\htdocs\video\ff\examples\new.mp4 2<&1

    This Not Convert Video For Me. How Do i can fix this ? And How Do i can check ffmpeg worked with php ?

  • avcodec/mpegvideo : fix buffer clear code so it should work with negative linesizes

    23 février 2014, par Michael Niedermayer
    avcodec/mpegvideo : fix buffer clear code so it should work with negative linesizes
    

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

    • [DH] libavcodec/mpegvideo.c