Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (36)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (6678)

  • avfilter/vf_dnn_detect : fix loading anchors when labels file is set

    30 décembre 2024, par Leandro Santiago
    avfilter/vf_dnn_detect : fix loading anchors when labels file is set
    

    References https://trac.ffmpeg.org/ticket/11387

    Defining anchors is needed, even when a filename with the labels is set.
    The issue was identified when using yolov4-tiny model using openvino.

    More information about how to reproduce the bug can be found on the trac
    issue referenced by this commit.

    Signed-off-by : Leandro Santiago <leandrosansilva@gmail.com>

    • [DH] libavfilter/vf_dnn_detect.c
  • Raspberry Pi cannot connect to IP camera, while Windows PC can ?

    28 novembre 2020, par gf000

    I have an IP camera (Provision ISR, DI-320IPS-VF, 2MP IR Vari-Focal Dome IP Camera). When I connect it to my router (it is a 10 or 12 years old TP-LINK TL-WR1043ND), it will immediately show up in "IP Manager" (this is a program by the manufacturer) on my Windows PC. If I double click on the camera's row, Internet Explorer opens up, and everything is working fine. On the same Windows PC, if I open VLC Media Player, and paste this URL : rtsp ://username:password@localipaddress:554/profile1&#xA;It works fine.

    &#xA;

    I have also a "Raspberry Pi 4 model B 4 GB RAM", which is connected to the same router. If I open VLC Media Player, and I paste the same URL, it doesn't work. I also created an ffmpeg one-liner, which would take a photo, but that is also not working.

    &#xA;

    My final goal would be to be able to take photos with that ffmpeg one-liner, on the Raspberry Pi.

    &#xA;

    Maybe the Raspberry Pi is not powerful enough to handle the stream ? Or, could it be the problem that the IP-camera is sending H-264 / H-265 video stream, and the Raspberry Pi cannot handle it ?

    &#xA;

    Thank you for your help. Any idea could help me.

    &#xA;

  • Elevenlabs API unable to find ffmpeg on device (Python 3.11)

    3 août 2023, par Ben Dyer

    When I'm trying to generate and play some speech using the elevenlabs API, the following text occurs at the very beginning of the program :&#xA;Couldn&#x27;t find ffmpeg or avconv - defaulting to ffmpeg, but may not work&#xA;This is despite ffmpeg being installed correctly, and being recognized by Powershell. The relevent code is below.

    &#xA;

    import openai, requests, ffmpeg, pydub&#xA;from elevenlabs import *&#xA;&#xA;set_api_key(&#x27;i have my key here&#x27;)&#xA;pydub.AudioSegment.converter = &#x27;C:/ffmpeg/bin/ffmpeg.exe&#x27;&#xA;&#xA;audio = generate(&#xA;  text=(response["choices"][0]["message"]["content"]),  #&lt;--- This is correct, and grabs the text I need.&#xA;  voice="Charlie",&#xA;  model=&#x27;eleven_multilingual_v1&#x27;&#xA;  )&#xA;&#xA;play(audio)&#xA;

    &#xA;

    I want it to simply play the audio generated through my default Windows playback device, but am instead met with the crash error upon playback ; ValueError: ffplay from ffmpeg not found, necessary to play audio.

    &#xA;