Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (38)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6644)

  • RTMP Stream Save Video using FFMPEG

    9 août 2019, par Abhishek Sengupta

    I am having trouble saving a live stream to disk using FFMPEG.

    It is saving the file after running the command :

    ffmpeg -i rtmp://000.00.0.0/hls/test1705269295 -c copy -f mp4 /var/www/html/1_1564654090862.mp4

    But it is becoming corrupted, if we dont use CTRL+C to save it manually, while the stream is still live.

    Is there any way so that ffmpeg will automatically save the files properly when the live stream ends by the streamer ?

  • libavfilter : vf_drawtext filter support draw text with detection bounding boxes in...

    14 mai 2021, par Ting Fu
    libavfilter : vf_drawtext filter support draw text with detection bounding boxes in side_data
    

    This feature can be used with dnn detection by setting vf_drawtext's option
    text_source=side_data_detection_bboxes, for example :
    ./ffmpeg -i face.jpeg -vf dnn_detect=dnn_backend=openvino:model=face-detection-adas-0001.xml :\
    input=data:output=detection_out:labels=face-detection-adas-0001.label,drawbox=box_source=
    side_data_detection_bboxes,drawtext=text_source=side_data_detection_bboxes:fontcolor=green :\
    fontsize=40, -y face_detect.jpeg
    Please note, the default fontsize of vf_drawtext is 12, which may be too
    small to be seen clearly.

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_drawtext.c
  • Streaming a video with serial port [on hold]

    23 août 2019, par kanki66

    I need an application which is streaming an video recorded by an webcam over the serial port in c#

    I opened an port and can send some data over the port. I have access to the webcam and have an picture/video on the screen. For the webcam part i used this tutorial :
    https://en.code-bude.net/2013/01/02/how-to-easily-record-from-a-webcam-in-c/

    void videoSource_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs)
    {
     //Cast the frame as Bitmap object and don't forget to use ".Clone()" otherwise
     //you'll probably get access violation exceptions
     pictureBoxVideo.BackgroundImage = (Bitmap)eventArgs.Frame.Clone();
    }

    How can i convert now this to an video as small as possible and send it over the serial port, without saving the video like directly to the serial port ?

    Thank you very much for the help