Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (24)

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

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

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

  • lavc/flacdsp : do not assume maximum R-V VL

    24 mai 2024, par Rémi Denis-Courmont
    lavc/flacdsp : do not assume maximum R-V VL
    

    This loop correctly assumes that VLMAX=16 (4x128-bit vectors
    with 32-bit elements) and 32 >= pred_order > 16. We need to alternate
    between VL=16 and VL=t2=pred_order-16 elements to add up to pred_order.

    The current code requests AVL=a2=pred_order elements. In QEMU and on
    thte K230 hardware, this sets VL=16 as we need. But the specification
    merely guarantees that we get : ceil(AVL / 2) <= VL <= VLMAX. For
    instance, if pred_order equals 27, we could end up with VL=14 or VL=15
    instead of VL=16. So instead, request literally VLMAX=16.

    • [DH] libavcodec/riscv/flacdsp_rvv.S
  • How to fix "Cannot find a valid font for the family Sans' while adding text on image using react-native-ffmpeg

    13 mai 2024, par coffee

    I am trying to add text on image using the code below&#xA;RNFFmpeg&#xA;.execute(`-y -i ${input} -vf "drawtext=text=&#x27;Hello World&#x27;:fontcolor=white:fontsize=75:x=0:y=0" ${output}`) ;

    &#xA;

    I am not using any custom font but still get this error.

    &#xA;

    Error :

    &#xA;

    [Parsed_drawtext_0 @ 0x7f87a1ce40] Cannot find a valid font for the family Sans

    &#xA;

    index.js:115 [AVFilterGraph @ 0x7f6765e760] Error initializing filter 'drawtext'&#xA;index.js:115 [AVFilterGraph @ 0x7f6765e760] with args 'text=Hello World:fontcolor=white:fontsize=75:x=0:y=0'&#xA;index.js:115 [AVFilterGraph @ 0x7f6765e760]

    &#xA;

    index.js:115 Error reinitializing filters !

    &#xA;

    index.js:115 Failed to inject frame into filter network : No such file or directory

    &#xA;

    index.js:115 Error while processing the decoded data for stream #0:0

    &#xA;

    Note :

    &#xA;

    I also tried using a custom font but not able to do it.&#xA;When I use RNFFmpegConfig.setFontDirectory('../../assets/fonts') function and with it the following code to add text on image&#xA;RNFFmpeg&#xA;.execute(`-y -i ${input} -vf "drawtext=text=&#x27;Hello World&#x27;:fontfile=&#x27;../../assets/fonts/MyFont.ttf&#x27;:fontcolor=white:fontsize=75:x=0:y=0" ${output}`) ;

    &#xA;

    It gives me the same error.

    &#xA;

    How can I fix this issue.

    &#xA;

  • FFplay : WASAPI can't initialize audio client (FFmpeg 3.4 binaries)

    9 juillet 2022, par fve

    I am trying to playback a stream that is multicasted over RTP using ffplay on Windows 7 64 bits.&#xA;The computer that serves the audio over RTP runs :

    &#xA;&#xA;

    ffmpeg -re -f dshow -audio_buffer_size 15 -ac 1 -i audio="Mic in at front Mic-in (Realtek" -ar 8k -acodec pcm_alaw -vn -f rtp rtp://127.0.0.1:5000&#xA;

    &#xA;&#xA;

    The client runs :

    &#xA;&#xA;

    ffplay rtp://127.0.0.1:5000&#xA;

    &#xA;&#xA;

    While this was working correctly in release 3.3, release 3.4 fails with this error :

    &#xA;&#xA;

    SDL_OpenAudio (1 channels, 8000 Hz): WASAPI can&#x27;t initialize audio client: CoInitialize has not been called.&#xA;&#xA;No more combinations to try, audio open failed&#xA;Failed to open file &#x27;rtp://127.0.0.1:5000&#x27; or configure filtergraph&#xA;

    &#xA;&#xA;

    Anyone has an idea of whats going on ?

    &#xA;&#xA;

    Thanks

    &#xA;&#xA;

    UPDATE #1 :

    &#xA;&#xA;

    A workaround is to specify an alternate output driver.&#xA;Set SDL_AUDIODRIVER environment variable value to the driver you want to use.&#xA;Under windows 7, directsound and winmm both solved my issue.

    &#xA;