Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (40)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9413)

  • stream webcam using ffmpeg to live555

    16 juin 2014, par John Qualis

    I am new to live555.

    I want to stream my webcam from a windows 7 (64-bit) machine behind home LAN using ffmpeg as the encoder to a live555 server running on a Debian 64-bit linux machine in a data center over the WAN. I want to send a H.264 RTP/UDP stream from ffmpeg and the "testOnDemandRTSPServer" should send out RTSP streams to clients that connect to it.

    I am using the following ffmpeg command which sends UDP data to port 1234, IP address AA.BB.CC.DD

    .\ffmpeg.exe -f dshow -i video="Webcam C170":audio="Microphone (3- Webcam C170)" -an
    -vcodec libx264 -f mpegts udp://AA.BB.CC.DD:1234

    On the linux server I am running the testOnDemandRTSPServer on port 5555 which expects raw UDP data from from AA:BB:CC:DD:1234. I try to open the rtsp stream in VLC using rtsp://AA.BB.CC.DD:5555/mpeg2TransportStreamFromUDPSourceTest

    But I get nothing in VLC. What am I doing wrong ? How can I fix it ?

  • stream webcam using ffmpeg and live555

    18 juin 2014, par John Qualis

    I am new to live555.

    I want to stream my webcam from a windows 7 (64-bit) machine behind home LAN using ffmpeg as the encoder to a live555 server running on a Debian 64-bit linux machine in a data center over the WAN. I want to send a H.264 RTP/UDP stream from ffmpeg and the "testOnDemandRTSPServer" should send out RTSP streams to clients that connect to it.

    I am using the following ffmpeg command which sends UDP data to port 1234, IP address AA.BB.CC.DD

    .\ffmpeg.exe -f dshow -i video="Webcam C170":audio="Microphone (3- Webcam C170)" -an
    -vcodec libx264 -f mpegts udp://AA.BB.CC.DD:1234

    On the linux server I am running the testOnDemandRTSPServer on port 5555 which expects raw UDP data from from AA:BB:CC:DD:1234. I try to open the rtsp stream in VLC using rtsp://AA.BB.CC.DD:5555/mpeg2TransportStreamFromUDPSourceTest

    But I get nothing in VLC. What am I doing wrong ? How can I fix it ?

  • OpenCV not building videoio.hpp in Ubuntu but builds in MacOSX

    26 novembre 2019, par CuriousCoder

    I have been trying to use the VideoWriter class from videoio.hpp in OpenCV. However, my code builds in MacOSX but not in Ubuntu 18.04.
    I am aware that the VideoWriter class uses AVFoundation in MacOSX and FFMPEG in Ubuntu [Source].
    The code fails to build in Ubuntu 18.04 even though FFMPEG is installed, but the same code is successfully builds in MacOSX. I get the following error when I try to build the code in Ubuntu :

    error : ‘VideoWriter’ in namespace ‘cv’ does not name a type

    I tried my best going through the documentation, but I couldn’t find any lead about this unfortunately. Also, I tried going though the questions in GitHub and Stackoverflow and other blog posts but none of them address this issue. It will be very nice if anyone can give any ideas to solve this issue.