Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (11858)

  • avfilter/dnn : Remove a level of dereference

    7 mai 2024, par Zhao Zhili
    avfilter/dnn : Remove a level of dereference
    

    For code such as 'model->model = ov_model' is confusing. We can
    just drop the member variable and use cast to get the subclass.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>
    Reviewed-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn/dnn_backend_tf.c
    • [DH] libavfilter/dnn/dnn_backend_torch.cpp
    • [DH] libavfilter/dnn_filter_common.c
    • [DH] libavfilter/dnn_interface.h
  • How to send AVPacket through a QTcpSocket.write() with all of its data ?

    24 juin 2024, par CottonBuds

    I want to send an AVPacket though a QTcpSocket.write() I tried to cast the avpacket pointer to an char * but it only shows 8 bytes of the avpacket and without the avpacket.data.

    &#xA;

    enter image description here

    &#xA;

    here is my code

    &#xA;

    void DisplayStreamServer::sendDataToClient(AVPacket* packet) {&#xA;    if (client == nullptr) {&#xA;        return;&#xA;    }&#xA;&#xA;&#xA;    client->write((char*) packet);&#xA;    client->waitForBytesWritten();&#xA;&#xA;    av_packet_unref(packet);&#xA;    av_packet_free(&amp;packet);&#xA;}&#xA;

    &#xA;

    I can see that my packet.data has data inside it using the visual studio memory viewer. but it seems like when i convert the packet to char * the data is not included

    &#xA;

    enter image description here

    &#xA;

  • Green screen on RTSP stream from USB camera using mediamtx (ffmpeg) [closed]

    27 juin 2024, par Pavel

    I need to cast a stream from a USB camera via RTSP as stable as possible (at any moment i need to be able to get a static picture on a remote host, reflecting the real state of affairs in front of the camera) and economically on the used resources (the hardware is very weak).

    &#xA;

    Camera information. The options highlighted in yellow are those found on all cameras in use.

    &#xA;

    Trying to write mjpeg to rtsp only displays green screen

    &#xA;

    And mediamtx output output

    &#xA;

    runOnInit in mediamtx.yml :

    &#xA;

    FFmpeg -hwaccel_output_format qsv -fflags nobuffer -f dshow -vcodec mjpeg_qsv -s 640x480 -i video="Integrated Webcam" -vcodec copy -f rtsp rtsp://localhost:$RTSP_PORT/$RTSP_PATH&#xA;

    &#xA;

    Thank you for your help

    &#xA;