Recherche avancée

Médias (91)

Autres articles (62)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (6734)

  • How to receive byte-stream by using gstreamer with python subprocess module or gst-launch-1.0 command ?

    21 avril 2022, par yuniversi

    I want to receive byte-stream by using gstreamer with python subprocess module.&#xA;Now I can successfully use ffmpeg to pull the byte-stream. As shown below.

    &#xA;

    import cv2&#xA;import subprocess as sp&#xA;&#xA;&#xA;height = 714&#xA;width = 420&#xA;rtsp_url = &#x27;rtsp://127.0.0.1:8554/video&#x27;&#xA;&#xA;# command&#xA;command = [&#x27;ffmpeg&#x27;,&#xA;            &#x27;-i&#x27;, rtsp_url,&#xA;            &#x27;-f&#x27;, &#x27;rawvideo&#x27;,&#xA;            &#x27;-s&#x27;,str(width)&#x2B;&#x27;*&#x27;&#x2B;str(height),&#xA;            &#x27;-pix_fmt&#x27;, &#x27;bgr24&#x27;,&#xA;            &#x27;-fflags&#x27;, &#x27;nobuffer&#x27;,&#xA;            &#x27;-&#x27;]&#xA;&#xA;p = sp.Popen(command, stdout=sp.PIPE, bufsize=10**8)&#xA;&#xA;while True:&#xA;    raw_image = p.stdout.read(width*height*3)&#xA;    image =  np.fromstring(raw_image, dtype=&#x27;uint8&#x27;)&#xA;    image = image.reshape((height,width,3)).copy()&#xA;    cv2.imshow(&#x27;image&#x27;, image)&#xA;    key = cv2.waitKey(20)&#xA;

    &#xA;

    I want to use gstreamer command instead of ffmpeg. So far, I have realized writing byte-stream to a file by using gstreamer command line.

    &#xA;

    gst-launch-1.0 rtspsrc location=rtsp://127.0.0.1:8554/video latency=0 drop-on-latency=true ! rtph264depay ! video/x-h264, stream-format=&#x27;byte-stream&#x27; ! filesink location=/home/name/stdout&#xA;

    &#xA;

    But it can't output byte-stream to pipe, so the terminal dosen't display byte-stream, not like ffmpeg command. How to change this command to output byte-stream through pipe so I can read from pipe.&#xA;Thank you for taking the time to answer for me !

    &#xA;

    This is RTSP streaming code.

    &#xA;

    import cv2&#xA;import time&#xA;import subprocess as sp&#xA;import numpy as np&#xA;&#xA;&#xA;rtsp_url = &#x27;rtsp://127.0.0.1:8554/video&#x27;&#xA;video_path = r&#x27;test.mp4&#x27;&#xA;cap = cv2.VideoCapture(video_path)&#xA;&#xA;# Get video information&#xA;fps = int(cap.get(cv2.CAP_PROP_FPS))&#xA;width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))&#xA;height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))&#xA;print(&#x27;fps={}&#x27;.format(fps))&#xA;&#xA;# command&#xA;command = [&#x27;ffmpeg&#x27;,&#xA;            &#x27;-re&#x27;,&#xA;            &#x27;-y&#x27;,&#xA;            &#x27;-stream_loop&#x27;, &#x27;-1&#x27;,&#xA;            &#x27;-f&#x27;, &#x27;rawvideo&#x27;,&#xA;            &#x27;-vcodec&#x27;, &#x27;rawvideo&#x27;,&#xA;            &#x27;-pix_fmt&#x27;, &#x27;bgr24&#x27;,&#xA;            &#x27;-s&#x27;, "{}x{}".format(width, height),&#xA;            &#x27;-r&#x27;, str(fps),&#xA;            &#x27;-i&#x27;, &#x27;-&#x27;,&#xA;            &#x27;-c:v&#x27;, &#x27;libx264&#x27;,&#xA;            &#x27;-pix_fmt&#x27;, &#x27;yuv420p&#x27;,&#xA;            &#x27;-preset&#x27;, &#x27;ultrafast&#x27;,&#xA;            # &#x27;-flags2&#x27;, &#x27;local_header&#x27;,&#xA;            &#x27;-bsf:v&#x27;, "&#x27;dump_extra=freq=k&#x27;", &#xA;            &#x27;-keyint_min&#x27;, &#x27;60&#x27;,&#xA;            &#x27;-g&#x27;, &#x27;60&#x27;,&#xA;            &#x27;-sc_threshold&#x27;, &#x27;0&#x27;, &#xA;            &#x27;-f&#x27;, &#x27;rtsp&#x27;,&#xA;            &#x27;-rtsp_transport&#x27;, &#x27;tcp&#x27;,&#xA;            &#x27;-muxdelay&#x27;, &#x27;0.1&#x27;, &#xA;            rtsp_url]&#xA;&#xA;p = sp.Popen(command, stdin=sp.PIPE)&#xA;&#xA;cnt = 0&#xA;t_start = time.time()&#xA;while (cap.isOpened()):&#xA;    t_cur = time.time()-t_start&#xA;&#xA;    ret, frame = cap.read()&#xA;    if not ret:&#xA;        cnt &#x2B;= 1&#xA;        print("count: {}".format(cnt))&#xA;        cap = cv2.VideoCapture(video_path)&#xA;        continue&#xA;&#xA;    p.stdin.write(frame.tobytes())&#xA;&#xA;    cv2.imshow(&#x27;real_time&#x27;, frame)&#xA;&#xA;    key = cv2.waitKey(20)&#xA;    if key == 27:&#xA;        p.terminate()&#xA;        break&#xA;

    &#xA;

  • avformat/movenc : sidx earliest_presentation_time is applied after editlist

    29 mars 2022, par Zhao Zhili
    avformat/movenc : sidx earliest_presentation_time is applied after editlist
    

    Fix #8334

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/movenc.c
    • [DH] tests/ref/fate/movenc
  • ffbuild/common : Fix CPPFLAGS applied for compiling C++ files

    12 mai 2022, par Andreas Rheinhardt
    ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
    

    Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS
    (the flags for compiling C++) like this :
    CXXFLAGS := $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS)
    Using " :=" creates a simply expanded variable, i.e. the values
    of the variable at the time of assignment are used and later
    modifications to them are ignored (using a recursively expanding
    variable (i.e. "=" instead of " :=") is not really possible here,
    as there would be an infinite loop when evaluating CXXFLAGS).

    Yet we perform later additions to CPPFLAGS : HAVE_AV_CONFIG_H and
    BUILDING_libfoo are defined. These do not reach C++ compilations.

    To fix this a trick is employed to prepend to a recursively
    expanded variable while keeping it recursively expanded.

    There are two practical consequences of this : C++ files now no longer
    include the version.h header, but only the version_major.h header
    of their library, saving some recompilations. Furthermore, they
    now get some optimized math functions (namely the ones from
    lavu/intmath.h instead of the ones from lavu/common.h).
    (av_parity() is the only one for which it makes a difference.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] ffbuild/common.mak