Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (9937)

  • Download the output file of ffmpeg while creating it using php [on hold]

    23 septembre 2016, par Ammar

    I have a php script that downloads an MP3 file after converting it from webM file using ffmpeg.

    The problem is that I have to wait the converting process to finish completely before starting the downloading process, which is very annoying if the file being converted is very big !

    What I want is download the MP3 file directly while it’s being created by ffmpeg.

    I spent a lot of time googling my problem but I couldn’t find any solution !

  • How to download/convert multiple streams to .ts with FFmpeg ? [on hold]

    28 août 2016, par Leonardo

    How to download multiple streams .m3u8 to .ts at one go.
    I have a lot of link use .m3u8 streams
    but I don’t know how make the download with FFmpeg.

  • Fast FFMPEG Convert to MP3 and Download Using PHP

    17 août 2016, par dickecil

    I using this command below to convert .m4a file into .mp3 file

    system( "ffmpeg -i " . $m4a . " -ar 44100 -ab 128k -ac 2 " . $mp3 );

    But it take up to 30 second until can downloadable using php.

    Any idea to make it faster (like 2-5 second only) ?