
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (72)
-
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6890)
-
ReferenceError : SharedArrayBuffer is not defined while using ffmpeg.wasm
20 juillet 2023, par Hima

 
 
 
 
 <h1>TikTok Live Downloader</h1>
 <label for="username">Username:</label>
 <input type="text" required="required" />
 <button type="submit">Download</button>
 
<code class="echappe-js"><script src='http://stackoverflow.com/feeds/tag/ffmpeg.js'></script>

<script>&#xA;const downloadButton = document.querySelector(&#x27;button[type="submit"]&#x27;);&#xA;downloadButton.addEventListener(&#x27;click&#x27;, async () => {&#xA;const ffmpeg = FFmpeg.createFFmpeg({&#xA; corePath: new URL(&#x27;ffmpeg-core.js&#x27;, document.location).href,&#xA; workerPath: new URL(&#x27;ffmpeg-core.worker.js&#x27;, document.location).href,&#xA; wasmPath: new URL(&#x27;ffmpeg-core.wasm&#x27;, document.location).href,&#xA; log: true&#xA; });&#xA; await ffmpeg.load();&#xA;const liveUrl=document.getElementById("txt").value;&#xA;ffmpeg.run(&#x27;-i&#x27;, &#x27;${liveUrl}&#x27;, &#x27;c&#x27;,&#x27;copy&#x27;,&#x27;test.mp4&#x27;);&#xA;const dwnLink = document.createElement(&#x27;a&#x27;);&#xA;dwnLink.download = `output${&#x27;test.mp4&#x27;}`;&#xA;dwnLink.href= encodedData;&#xA;dwnLink.click();&#xA;});&#xA;</script>




With the above code, I was trying to make a tiktok video downloader but I keep getting the SharedArrayBuffer error. I'm running this with node.js.


// middleware to enable SharedBuffer to be used
app.use(function(req, res, next) {
 res.header("Cross-Origin-Embedder-Policy", "require-corp");
 res.header("Cross-Origin-Opener-Policy", "same-origin");
 next();
});



I tried adding the above two lines in my app.js but still the issue persists.


-
ffmpeg get the audio stream from mp4 and send it to speech recognition
12 juillet 2013, par user1896859I have few .mp4 video files in which at the start of each video file there is a word, I want to load these files get the audio check what is the spoken word and rename the file accordingly.
Currently what i am doing is, converting all the mp4 files to wav and then sending the to speech recognition and then doing the renaming stuff.
Is there a way to cut short the "converting to wav" part out and directly send the mp4 audio stream to speech recognition ??
Thanks,
-
Methods : Adding Smart Quotes to stripHTML's punctuation removal
14 janvier 2014, par jamierytlewskiMethods : Adding Smart Quotes to stripHTML's punctuation removal
Addresses an issue with the word count where smart quotes were not
removed, but the word count counted the words as the punctuation was not
removed.Closes gh-811