Recherche avancée

Médias (91)

Autres articles (92)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (4684)

  • how to make rtmp streaming player on windows phone 8

    9 avril 2014, par user3334845

    i am making basic online live tv program on wp8.I'am use to Microsoft.Web.Media.SmoothStreaming framework and Microsoft Player Framework (Microsoft.PlayerFramework.WP8.Core, Version=1.8.2.2). My app is play http mms and rtsp with this framework. But not play rtmp live streams :S. I'm stucked. I'm search about how play rtmp on wp8. And i am found two thinks :
    1-) ffmpeg core (librtmp) (https://code.google.com/p/rtmp-mediaplayer/)
    2-)FluorineFx (http://www.fluorinefx.com/download.html)

    i am trying first librtmp but this code is so complex for me:S
    and i am trying B plan FluorineFx, install it and trying add dll wp8 reference but program get error "this dll is making for visual studio 2008", and trying FluorineFx samples in programfiles directory, but same error vs2008 works not current:S.

    I'm stuck here please help me.

  • Processing a video on a webserver [on hold]

    6 septembre 2013, par Django Reinhardt

    A client is interested in applying a Sepia style filter, as well as title cards, to user-uploaded videos on their website. This would obviously be automated on their webserver, and it seems ffmpeg, dvd-slideshow and/or aviDemux are good ways to make this happen.

    Unfortunately, from what I've read, such processing would require a lot of webserver CPU power — far more than the average webserver usually has. How can I practically perform these calculations on a website ?

    Should I just try and go for a beefy dedicated hosting package, or can I rent another server that's more suited to video processing ?

  • How to fix that ? [duplicate]

    30 septembre 2016, par Độc Hành

    This question already has an answer here :

    Watermark short videos upload from pc working.
    But download video 720p from vimeo and watermark not working

     set_time_limit(0);
     $ffmpeg = FFMpeg\FFMpeg::create([
           'ffmpeg.binaries' => '/usr/bin/ffmpeg',
           'ffprobe.binaries' => '/usr/bin/ffprobe',
           'timeout' => 0, // The timeout for the underlying process
           //'ffmpeg.threads' => 12,   // The number of threads that FFMpeg should use
       ]);
        $video = $ffmpeg->open( '/var/www/webroot/ccbank/frontend/web/uploads/vimeo.mp4');
       $watermark = '/var/www/webroot/ccbank/frontend/web/uploads/logo-h100.png';
       $video->filters()->watermark($watermark, [
           'position' => 'relative',
           'right' => 50,
           'top' => 50,
       ]);
       $format = new FFMpeg\Format\Video\X264();
       $output =  '/var/www/webroot/ccbank/frontend/web/uploads/watermark1.mp4';
       $video->save($format, $output);

    Browser error :
    error1

    error command line :

    '/usr/bin/ffmpeg' '-y' '-i' '/var/www/webroot/ccbank/frontend/web/uploads/vimeo.mp4' '-vf' 'movie=/var/www/webroot/ccbank/frontend/web/uploads/logo-h100.png [watermark]; [in][watermark] overlay=main_w - 50 - overlay_w:50 [out]' '-vcodec' 'libx264' '-acodec' 'libfaac' '-b:v' '1000k' '-refs' '6' '-coder' '1' '-sc_threshold' '40' '-flags' '+loop' '-me_range' '16' '-subq' '7' '-i_qfactor' '0.71' '-qcomp' '0.6' '-qdiff' '4' '-trellis' '1' '-b:a' '128k' '-pass' '1' '-passlogfile' '/tmp/ffmpeg-passes57ee9ba784e323laim/pass-57ee9ba784f92' '/var/www/webroot/ccbank/frontend/web/uploads/watermark1.mp4'

    Terminal :

    error2

    lib libfaac-dev ready installed
    How to fix that ?