Recherche avancée

Médias (3)

Mot : - Tags -/collection

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (3146)

  • avformat/http: increase BUFFER_SIZE to MAX_URL_SIZE + HTTP_HEADERS_SIZE

    11 mai 2020, par Joey Smith
    avformat/http: increase BUFFER_SIZE to MAX_URL_SIZE + HTTP_HEADERS_SIZE
    

    Some real-world sites use an authorization header with a bearer token ; when
    combined with lengthy request parameters to identify the video segment,
    it's rather trivial these days to have a request body of more than 4k bytes.

    MAX_URL_SIZE is hard-coded to 4k bytes in libavformat/internal.h, and
    HTTP_HEADERS_SIZE is 4k as well in libavformat/http.h, so this patch increases
    the buffer size to 8k, as that is the default request body limit in Apache, and
    most other httpds seem to support at least as much, if not more.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/http.c
  • FFmpeg send video to Virtual Cam in Windows [closed]

    30 août 2021, par Felipe Nunes

    I'm bulding a system that needs to generate a HLS and reproduces the video in browser, locally. Initially, to use HLS in browser directly causes a long delay (because of the size of slice of TS). To solve this, I thought to create a virtual cam to duplicate video signal and the browser uses this virtual cam.

    &#xA;

    In Linux based systems, we can create a virtual cam using V4L2 Loopback and to define this virtual cam as output. By example :

    &#xA;

    ffmpeg -f v4l2 -i /dev/video0 -vf "drawtext=text=&#x27;Hello World&#x27;:fontsize=12:fontcolor=white:font=Arial:x=w-tw-10:y=h-th-10,format=yuv420p" -f v4l2 /dev/video1&#xA;

    &#xA;

    In Windows, I could create a virtual cam using OBS Virtual Cam, but I couldn't send video to this device.

    &#xA;

    ffmpeg -i teste.mp4 -f dshow video="OBS Virtual Cam"&#xA;

    &#xA;

    When I try to run this command, I receive this error :

    &#xA;

    [NULL @ 000002a1e089d880] Requested output format &#x27;dshow&#x27; is not a suitable output format&#xA;video=OBS Virtual Cam: Invalid argument&#xA;

    &#xA;

    How to send a video to a device using ffmpeg ?

    &#xA;

  • Connecting to RTSP stream via FFMpeg - 'could not find codec parameters for stream 0'

    14 novembre 2013, par user2992545

    I'm a beginner in the FFMpeg world, so please excuse me my overall level of knowledge and any mistakes.

    What I have here is a DVR, made by ITX Security. I have an SDK for it and currently I'm trying to connect to its RTSP using FFMPEG. I've been partially succesfull (i think), the best what I got was :

    `(...)bin>ffplay -user-agent "ITX Security" rtsp://ADMIN:1234@192.168.2.130:5554/live/

    [rtsp @ 02a242e0] UDP timeout, retrying with TCPB sq=0B f=0/0
    [rtsp @ 02a242e0] method PAUSE failed: 501 Not Implemented
    [rtsp @ 02a242e0] Could not find codec parameters for stream 0 (Video: h264):unspecified size Consider increasing the value for the &#39;analyzeduration&#39; and &#39;probesize&#39; options
    rtsp://ADMIN:1234@192.168.2.130:5554/live/: could not find codec parameters

    nan:  0.000 fd=0 aq=    0KB vq=    0KB sq=    0B f=0/0`

    Is it really indicating that it has trouble in playing the stream (because it lacks a proper codec ?) - or am I just not getting the point ?

    I've captured traffic between my computer and the DVR in question, and something is happening (at least that's what Wireshark says).

    https://www.dropbox.com/s/j65lige244kg8jt/rtsp_ffmpeg.pcap

    What am I doing wrong ?

    Regards.