
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (98)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (7846)
-
How i can slice audio file with using node.js
11 février 2018, par Maxim Cherevatovtell me please how i can slice audio file with using node.js ? Now i read the documentation for ffmpeg module, but don’t understand how to slice audio file with using this module.
I found this code, but it gives an error error : NaNffmpeg('music/ant.mp3')
.setStartTime('00:00:03')
.setDuration('10')
.output('music/ant.mp3')
.on('end', function(err) {
if(!err)
{
console.log('conversion Done');
}
})
.on('error', function(err){
console.log('error: ', +err);
}).run(); -
'ffmpeg' not found ? relativ path ? install ffmpeg ?
21 mars 2021, par AlpacaTheUnicornI am making a Discord Music Bot. And to play music I need the following line.


ctx.voice_client.play(discord.FFmpegPCMAudio(URL,executable="C:/Users/ ....../ffmpeg/bin/ffmpeg.exe" ,**FFMPEG_OPTIONS))



The problem is the part with the path (executable="........").
It does work with an absolute path, but I want a relative path, so I can easily transport my program on a stick and give it to other people.


So I tried something to do a relative path like "../ffmpeg/bin/ffmpeg.exe", but it did not work (I need to go one directory back and then to /ffmpeg/bin/ffmpeg.exe). I even moved ffmpeg.exe to the same directory and used the path "./ffmpeg.exe", but it didn't work too.


*I dont know how to properly install ffmpeg either, I just did it somehow, but not I dont know how to do it on other devices.
Maybe anyone can help me with the path ?


-
Do we need to transcode mp4 or mp3 to HLS format for streaming video/ audio on mobile app ?
2 février 2019, par ken_vkWe are developing a mobile app which play music and video .
The music (.mp3) and video(.mp4) is about 5 - 20 MB . I knew we must to transcode from .mp4 to HLS format ( .m3u8) for streaming. And I still consider about transcode audio file to HLS format whether or not ?
I have two question.
- Do we need transcode video (.mp4) to HLS format if the files are about 5- 20 MB.
- Do we need transcode mp3 file to HLS format if the files are about 5 - 10 MB ?