Recherche avancée

Médias (91)

Autres articles (40)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (5831)

  • live streamming using ffmpeg for more than stream on the same time

    29 novembre 2016, par بسمة أمل

    I’m using this command to stream video in ffmpeg but when I stream more than 3 or 4 streams at the same time interruption happen although the process in my device doesn’t exceed 50%
    I tried to use ffmpeg lib for each stream but interruption still happened

    this is my command :

    ffmpeg -re -i test.mp4 -i logo.png -vcodec libx264 -pix_fmt yuv420p -vb 2000000 -g 60
    -vprofile main -acodec aac -ab 128000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb
    -strict experimental -filter_complex "[0][1]overlay=0:0"
    -pass 1 -f mpegts udp://127.0.0.1:1234?pkt_size=1316
  • How to find the presentation time stamp of a given frame number for FFMPEG decoding ?

    21 août 2017, par Deepankar Arya

    I am using the C APIs of ffmpeg for some video processing. My aim is to extract the screen shot of a given frame number. I have understood that ffmpeg has an av_seek_frame function to seek to a given timestamp(expressed in appropriated base units of the video stream). I assume that I will have to goto to the most recent I frame for the given frame(using the AVSEEK_FLAG_BACKWARD flag) and read onwards untill I meet the required frame. For that I need to give a seek time stamp to the av_seek_frame function. My main issue is that given a frame number, how do I find an associated presentation time stamp to seek to ?

  • PHP - 500 error every second time after using exec() on ffmpeg

    23 août 2020, par Eduard Unruh

    I get an 500 error every second time executing this code :

    


    exec('"ffmpeg/bin/ffmpeg.exe" -y -i ' . $infile . ' -movflags faststart -pix_fmt yuv420p -maxrate 500k -bufsize 250k -vf scale=trunc(iw/2)*2:trunc(ih/2)*2 ' . $outfile . ' 2>&1', $output, $return_var);


    


    I've seen this answer :

    


    PHP Exec (ffmpeg) fails on IIS every other request

    


    But before I try to find out what changing the FastCGI protocol is and how to do it : is there a way in the code to avoid this ?