Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

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

  • How well does FFmpeg scale ? Any examples ?

    17 juin 2020, par Pepper

    I'm currently working on the server side of an augmented reality project. It's a lot like http://www.livingsasquatch.com/. I'm using PHP/MySQL and FFmpeg to capture the webcam video and encoding it to .flv.

    



    Basically Flash uploads the video as a long series of .jpg images. PHP then takes those images, generates a few thumbnails and passes them through FFmpeg which converts them to a single .flv file.

    



    Here is the FFmpeg code :

    



    $ffmpeg_images = $image_directory.'/image%d.jpg';

@unlink($video_directory."/$video_id.flv"); 
$ffmpeg_video = $video_directory."/$video_id.flv";
$ffmpeg_string = FFMPEG_PATH." -f image2 -i $ffmpeg_images -f flv $ffmpeg_video";

@exec($ffmpeg_string);


    



    This seems to be working nicely in my tests, but I don't know how we'll it will scale. Since this is my first time using FFmpeg, I don't know if video encoding this way will bring the server to its knees.

    



    Does anyone have experience with FFmpeg on a high traffic site ?

    



    Is there a better way of handling this type of Webcam to .flv conversion ?

    



    Are there any examples of FFmpeg being used on a high traffic site ?

    


  • Evolution #3488 (Nouveau) : Stocker globalement toutes les requetes passées

    29 juin 2015, par nico d

    Suite au oups de ce commit :
    https://core.spip.net/projects/spip/repository/revisions/22276
    vous avez pu voir que j’ajoute dans une globale toutes les requêtes effectuées.
    Pour éviter une nouvelle boulette j’ai forké chez moi req/mysql.php en req/mysqldebug.php (connecteur perso).

    Cette globale avec toutes les requetes me permet d’afficher sur toutes les pages (public et privé) un petit bandeau avec le nombre de requêtes effectuées et d’autres infos.
    Ce nombre de requêtes affiché me sert à optimiser plus rapidement des squelettes, sans passer par profil ou debug. Ou à vérifier que des pages se mettent bien en cache.
    Exemple :

    Est ce que ça vous parait intéressant ?

  • how to execute %0d pattern of ffmpeg from .bat file

    4 août 2013, par tainguyen

    I have a ffmpeg command :
    ffmpeg -i D :\Wildlife.wmv -f image2 D :\dfs\image-%07d.png
    It work when I parse into command prompt directly.
    But when I saved it into a .bat file, "%0" in %07d pattern became the file's name.

    So how do I execute this ffmpeg command from a .bat file ?