
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (68)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 2011MediaSPIP 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 (7977)
-
Error after installing ffmpeg in replit for nodeJs discord bot
22 octobre 2023, par NewbieMFI want to host my discord music bot, before hosting the bot it worked perfectly, but when I hosted it on Replit an error occurred FFmpeg/avconv not found !.
I followed what users on the internet said by adding pkgs.ffmpeg.bin to replit.nix
When I tried again to use the music bot, an error appeared like this :


An error encountered: PlayingError: Error: Cannot find module '/home/runner/parrhesbot/node_modules/@discordjs/opus/prebuild/node-v93-napi-v3-linux-x64-glibc-2.31/opus.node'
Require stack:
/home/runner/parrhesbot/node_modules/@discordjs/opus/lib/index.js
/home/runner/parrhesbot/node_modules/prism-media/src/util/loader.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/Opus.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/index.js
/home/runner/parrhesbot/node_modules/prism-media/src/index.js
/home/runner/parrhesbot/node_modules/@discordjs/voice/dist/index.js
/home/runner/parrhesbot/node_modules/distube/dist/index.js
/home/runner/parrhesbot/bot.js
/home/runner/parrhesbot/index.js
Error: Cannot find module 'node-opus'
Require stack:
/home/runner/parrhesbot/node_modules/prism-media/src/util/loader.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/Opus.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/index.js
/home/runner/parrhesbot/node_modules/prism-media/src/index.js
/home/runner/parrhesbot/node_modules/@discordjs/voice/dist/index.js
/home/runner/parrhesbot/node_modules/distube/dist/index.js
/home/runner/parrhesbot/bot.js
/home/runner/parrhesbot/index.js
Error: Cannot find module 'opusscript'
Require stack:
/home/runner/parrhesbot/node_modules/prism-media/src/util/loader.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/Opus.js
/home/runner/parrhesbot/node_modules/prism-media/src/opus/index.js
/home/runner/parrhesbot/node_modules/prism-media/src/index.js
/home/runner/parrhesbot/node_modules/@discordjs/voice/dist/index.js
/home/runner/parrhesbot/node_modules/distube/dist/index.js
/home/runner/parrhesbot/bot.js
/home/runner/parrhesbot/index.js
Id: EfACVChwxnI



How can my Discord music bot run normally like before hosting ?


-
How can I programatically escape option strings for ffmpeg ?
27 mai 2014, par pixelearthI’m just using ffmpeg for my first serious project. I was happy until I had a string that needed escaping. Now I want to die.
I want to put this string into a blank video that will then (later) be appended to a separate video "Tango Milonga 1 : The Dance’s Music and History"
When I write it like this, it obviously doesn’t work becaues the : and ’ chars need escaping and probably others :
ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=Tango Milonga 1: The Dance's Music and History: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" /Users/user/my_life/sites/2007/idance/videos_in_production/intros/2621.mp4
To make matters more complicated, command and the text option in this example will really be dynamically generated from a DB and will be looped over thousands of times. This currently looks like this in my ruby script (another level of escaping) :
`ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=#{@lesson.name}: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" #{@dir}/intros/#{@lesson.id}.mp4`
How can I programatically escape the string @lesson.name above so that this command always works ?
-
how to mix two voice file to one files ?
7 août 2018, par zjlljx123How to mix two voice file in android ??
I want to record and play a music in backgroud at the same time, i use FFmpeg,it can mix success,but need too much time, how can speed up it or use another fuction resolve it ?
i use the command in
FFmpeg:"-i %s -i %s -filter_complex amix=inputs=2:duration=first %s"