Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6709)

  • 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;