Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (68)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Can ffmpeg convert audio from raw PCM to WAV ?

    6 avril 2022, par xXx_CodeMonkey_xXx

    I can convert wav file to pcm

    



    ffmpeg -i file.wav -f s16le -acodec pcm_s16le file.pcm


    



    How can I revert this operation ?

    


  • get, using ffmpeg, the RTSP response code

    1er août 2023, par João Victor

    It's possible get using the ffmpeg the RTSP response code ?

    


    I need collect the information from RTSP header, similar to the HTTP header

    


    using 'curl' i dont think it would be possible.

    


    I was able to validate the operation of the link only with screen shots, but I believe this is not the best way to do this.

    


  • ffmpeg opperation not permtted on rtmp

    24 janvier 2021, par Nibir Ray

    I am trying to make a internet radio using ffmpeg. I have a folder full of mp3 and have a 5sec mp4 that i want to use in a infinite loop. so here is the code i came up with to stream on YouTube

    


    #! /bin/bash

    VBR="1500k"
    FPS="30"
    QUAL="ultrafast"
    YOUTUBE_URL=" rtmp://a.rtmp.youtube.com/live2"
    YOUTUBE_KEY="YOUTUBE_KEY_HERE"
    VIDEO_SOURCE="output.mp4"
    AUDIO_ENCODER="aac"
    
    ffmpeg \
     -stream_loop -1 \
     -re \
     -i "$VIDEO_SOURCE" \
     -thread_queue_size 512 \
     -stream_loop -1 \
     -re \
     -f concat -safe 0 -i audio.txt \
     -c:v libx264 -preset $QUAL -r $FPS -g $(($FPS *2)) -b:v $VBR -bufsize 3000k -maxrate $VBR \
     -c:a $AUDIO_ENCODER -ar 44100 -b:a 128k -pix_fmt yuv420p \
     -f flv -flvflags no_duration_filesize $YOUTUBE_URL/$YOUTUBE_KEY


    


    The problem is the i am getting an error saying operation not permitted

    


    here is the error log

    


    Error while filtering: Operation not permittede=00:00:03.73 bitrate=1369.7kbits/s speed=0.854x
frame=   46 fps=9.4 q=16.0 Lsize=     742kB time=00:00:04.50 bitrate=1350.0kbits/s speed=0.921x
video:668kB audio:70kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.622114%
[libx264 @ 0x5584c6bcf620] frame I:1     Avg QP:37.00  size: 50802
[libx264 @ 0x5584c6bcf620] frame P:45    Avg QP:23.92  size: 14046
[libx264 @ 0x5584c6bcf620] mb I  I16..4: 100.0%  0.0%  0.0%
[libx264 @ 0x5584c6bcf620] mb P  I16..4:  4.3%  0.0%  0.0%  P16..4: 17.9%  0.0%  0.0%  0.0%  0.0%    skip:77.8%
[libx264 @ 0x5584c6bcf620] coded y,uvDC,uvAC intra: 30.5% 41.6% 16.6% inter: 7.3% 10.1% 1.9%
[libx264 @ 0x5584c6bcf620] i16 v,h,dc,p: 44% 43%  8%  5%
[libx264 @ 0x5584c6bcf620] i8c dc,h,v,p: 32% 40% 24%  5%
[libx264 @ 0x5584c6bcf620] kb/s:1187.63
[aac @ 0x5584c6bd2f20] Qavg: 320.800


    


    I think this error is due to the video that I am looping is too short and the -stream_loop -1 flag seems buggy according to some guys on superuser and stackoverflow.

    


    Is there any other way to fix this