Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (44)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • How to get the support for SRT (Secure Reliable Transport) in React Native (for both iOS & Android) ?

    18 mars 2021, par Sourav Dey

    I tried many ways to get the support for SRT (Secure Reliable Transport) streaming in React Native but none of them worked. There were very few resources over the Internet and none seems to be working.
I tried using ffmpeg library but they are not providing the support for SRT as of now.

    


    The following error was thrown when a valid SRT link was passed to the below code :

    


    Code :

    


    useEffect(() => {&#xA;    RNFFmpeg.execute(&#xA;      &#x27;-i "srt://:<port>?streamid=live.sls.com/live/test2" -vcodec copy -acodec copy -strict -2 -y -f mpegts /storage/emulated/0/Download/srt_test_0.ts&#x27;,&#xA;    ).then(result => console.log(`>> FFmpeg process exited with rc=${result}.`));&#xA;&#xA;    return () => {&#xA;      console.log(&#x27;cancelling all executions&#x27;);&#xA;      RNFFmpeg.cancel();&#xA;    };&#xA;  }, []);&#xA;</port>

    &#xA;

    Output :

    &#xA;

    srt://:<port>?streamid=live.sls.com/live/test2: Protocol not found&#xA;index.js:115 Did you mean file:srt://:<port>?streamid=live.sls.com/live/test2index.js:22 &#xA;>> FFmpeg process exited with rc=1.&#xA;</port></port>

    &#xA;

    Can anyone please help ?

    &#xA;

  • Getting error "WebAssembly.Memory() : could not allocate memory" when running ffmpeg.wasm on android chrome browser

    27 juin 2022, par Ravi Kundu

    Error in detail :

    &#xA;

    WebAssembly.Memory(): could not allocate memory&#xA;at https://*******/ffmpeg-core.js:22:82&#xA;at https://*******/ffmpeg.min.js:1:6506&#xA;at f (https://*******/ffmpeg.min.js:1:11322)&#xA;at Generator._invoke (https://*******/ffmpeg.min.js:1:11110)&#xA;at Generator.next (https://*******/ffmpeg.min.js:1:11747)&#xA;at i (https://*******/ffmpeg.min.js:1:4295)&#xA;at c (https://*******/ffmpeg.min.js:1:4498)&#xA;

    &#xA;

    Code for ffmpeg :

    &#xA;

    const downloadWithFFMPEG = async () =>{&#xA;  const sourceBuffer = await fetch(recordingURL).then(r => r.arrayBuffer());&#xA;  await ffmpeg.load();&#xA;  await ffmpeg.FS(&#xA;    "writeFile",&#xA;    "input.webm",&#xA;    new Uint8Array(sourceBuffer, 0, sourceBuffer.byteLength)&#xA;  );&#xA;  await ffmpeg.run("-i", "input.webm", "-c", "copy", "output.mp4")&#xA;  const output = ffmpeg.FS("readFile", "output.mp4");&#xA;  var link = document.createElement(&#x27;a&#x27;)&#xA;  link.href = URL.createObjectURL(new Blob([output.buffer], { type: &#x27;video/mp4;codecs=H264&#x27; }));&#xA;  link.download = this.data;&#xA;  link.click();&#xA;  recording = false;&#xA;}&#xA;

    &#xA;

    Brief about problem :&#xA;The error only comes for android chrome browser. The same code works fine on pc/laptop chrome.&#xA;Have also enabled Webassembly-thread on chrome ://flags for android browser as someone suggested me to do it but still same error. Can someone help me ?

    &#xA;

  • ffmpeg4.4 missing in OpenCV3.4.13 + Android Studio4.2.1 ? No tutorial gives answer how to fix

    8 juin 2021, par Fab

    Finally opencv is working in my Android Studio project (solved with help of https://www.youtube.com/watch?v=-0Yx1UzozzQ). But theres is no Video I/O information visible so I guess i didnt connected ffmpeg correctly in my project and it isnt used at all !?

    &#xA;

    My steps so far :

    &#xA;

    &#xA;

      &#xA;
    • I dont get any error messages. I try to VideoCapture.open("somestring") and returned is just false.
    • &#xA;

    &#xA;

    I know there are a lot of similar questions but I cant identify which one really addresses my issue.&#xA;Really appreciate your help. Thanks, Fabian

    &#xA;