Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (62)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6464)

  • Install ffmpeg in MAMP

    19 juin 2017, par David Liu

    I’m trying to use this : https://www.youphptube.com/ to create a video sharing website.

    I’m developing locally using MAMP on macOS Sierra and have installed both ffmpeg and exiftool on the system, but how do I make it work from within the server ? Under "Advanced Configuration" what do I put in "Path to FFMPEG" and "Path to exiftool" ? What is the folder this path is relative to ? I guess this is why the videos I try to upload never start encoding. In "Leave blank for native ffmpeg" what does "native ffmpeg" mean ?

    I already tried putting the absolute paths but it doesn’t work either. I’m getting this error log :

    [19-Jun-2017 13:59:13 America/Panama] "status" :"error", "msg" :["sh : ffprobe : command not found"] ,"return_val":127, "where" :"getDuration", "cmd" :"ffprobe -i /Applications/MAMP/tmp/php/phpq2j0pt -sexagesimal -show_entries format=duration -v quiet -of csv=’p=0’"
    [19-Jun-2017 13:59:13 America/Panama] Duration founded : EE:EE:EE
    [19-Jun-2017 18:59:14 UTC] rm -f /Applications/MAMP/htdocs/platea-3/videos/video2_59481f01ed6179.69459230.jpg && ffmpeg -ss 5 -i /Applications/MAMP/htdocs/platea-3/videos/original_video2_59481f01ed6179.69459230 -qscale:v 2 -vframes 1 -y /Applications/MAMP/htdocs/platea-3/videos/video2_59481f01ed6179.69459230.jpg
    Array
    (
    [0] => sh : ffmpeg : command not found
    )

    So basically I think the server doesn’t find neither ffmpeg nor ffprobe.

    I would appreciate it if someone could take the time to install it as well and take a look. Thanks !

  • x11grab : Check the XQueryPointer return value

    26 septembre 2014, par Antonio Ospite
    x11grab : Check the XQueryPointer return value
    

    The paint_mouse_pointer() code uses XFixes to retrieve the cursor
    coordinates, but XFixes gives no information about which screen the
    pointer is on ; this results in always drawing the cursor on the
    captured screen even if the mouse pointer was on another screen.

    For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
    the cursor was being drawn in the captured image even when the mouse
    pointer was actually on screen 0, which is wrong and visually confusing.

    CC : libav-stable@libav.org
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavdevice/x11grab.c
  • What is the correct syntax and command in this shell_exec() case ?

    11 mai 2016, par mgeezy

    Please help me to find the right syntax and command in this line to fetch some metadata for the specified row and column :

    shell_exec('ffmpeg -i ' . $targetPath . -metadata album={echo $row_release['release_title'];} ' -b:a 320k '. $mp3);

    I am confused, especially with this part

    -metadata album={echo $row_release['release_title'];} ' -b:a

    Are echo and brackets OK, because it does not execute it.

    Thanks guys and girls !