
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (61)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (6602)
-
How to play video files (mov, mp4, ts etc etc) in a web page
5 juillet 2021, par DierreI have a question about playing several video files in an intranet page.


The page is really simple, there is a list with videos ordered by name and clicking one of them, it starts in the page inside video tag using JS to replace the source.


It works with MP4 files but for example mov and other files do not work or play only audio.
I understood this is a normal problem of browsers that does not support all video types, so the question is :
Is there a way to play them without convert all files to mp4 ?


I have access to the linux server with apache web server, ffmpeg is installed I can install other software if necessary (streaming server ? file streaming ? I'm not an expert) I am not interested to live events.


Does anyone have any idea if it is possible to solve it ?


Thanks in advance


Roy


-
How do you get amplitude of audio file in Android before you play it ?
30 août 2020, par McMillanMeI know we can easily do it when we record it (several ways, actually). But how are we going about getting an amplitude graph from an mp3/ogg file ?



As it is now, I see two options :
 1. Quickly play it & construct it while its playing
 2. Try to do it with ffmpeg (but I really don't want to do NDK)



Are there any other options beside these ? Thank you


-
Error when trying to play MP3 file in discord VC
27 mars 2019, par QueenInTheNorthI am encountering an error when my discord bot is trying to play an MP3 file in a Voice channel.
My code :
if(message.member.voiceChannel){
let connection = await message.member.voiceChannel.join();
let dispatcher = await connection.playFile("./resources/shamebell.mp3");
connection.then(connection => {
dispatcher.on("end", end => {connection.leave()});
})
.catch(console.error)
}The bot encounters an error when trying to play the MP3 file. It joins the Voice Channel that the user is in just fine. The bot should join the VC, play the MP3 file then leave afterwards.
Error :
TypeError [ERR_INVALID_ARG_TYPE]: The "file" argument must be of type string
I have tried using both the absolute path as well as the relative path to the MP3. I have ffmpeg@0.0.4 installed via npm. Any help on resolving this issue will be appreciated :)