Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (54)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5910)

  • Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’

    13 juillet 2015, par Michael Niedermayer
    Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
    

    * commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’ :
    hevc_ps : make sure failing to decode an SPS always returns an error

    Conflicts :
    libavcodec/hevc_ps.c

    See : 15893adbdb6a7000f59207bcb88def6e7b4812b9
    Merged-by : Michael Niedermayer <michael@niedermayer.cc>

  • how to call avconv via shell_ exec in php ?

    8 janvier 2018, par Blurry Script

    when I call a command to convert video from console linux its all working, but when I call the same command from shell_exec in php, it gives no errors it returns nothing.

    even tough I added sudo 2>&amp;1 to redirect the output, for example this command :

    $res = shell_exec("avconv -i film.mkv 2>&amp;1");
    echo $res //nothing
    exit;
  • Merge individual frame to video file using Opencv and FFmpeg

    16 août 2022, par Rohit

    I am trying to stack a individual frame to a video file using Opencv. I want to combine two different code together to make the individual frame.&#xA;Following code help me extract the individual frame

    &#xA;

    while True:&#xA;ret, frame=cap.read()&#xA;mask = object_detector.apply(frame)&#xA;_, mask  = cv2.threshold(mask,254,255,cv2.THRESH_BINARY)       &#xA;contours,_ = cv2.findContours(mask, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)&#xA;res = cv2.bitwise_and(frame,frame,mask=mask)&#xA;for cnt in contours:&#xA;    area = cv2.contourArea(cnt)&#xA;    if area>1000:   &#xA;        #print("Area of contour:", area)&#xA;        cv2.drawContours(frame, [cnt], -1, (0,255,0),2)&#xA;        cv2.imwrite("file%d.jpg"%count, frame)&#xA;

    &#xA;

    And I attach the frame together separately using following code using ffmpeg command

    &#xA;

    ffmpeg -r 3 -i frame%03d.jpg -c:v libx264 -vf fps=25 -pix_fmt yuv420p video.mp4&#xA;

    &#xA;

    I tried storing the individual frame in array, but it didn't work. It doesn't show any error, but pc crash.

    &#xA;