
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (58)
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
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 -
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 (12277)
-
Downloading a video using fluent-ffmpeg in nodejs and express
26 juillet, par Apdo ElsaedI am working on a side project to download videos from Reddit, but they separate video and audio in different files. so i have to merge them first before downloading them in the client. i was able to do all of this as in the following snippet of code.


const ffmpeg = require("fluent-ffmpeg");
const proc = new ffmpeg();

app.post('/download', async (req, res) => {
 
 const audio = "some aduio link";
 const video = "some video link";

 proc.addInput(video)
 .output('${some path}./video.mp4')
 .format('mp4')
 .on("error", err => console.log(err))
 .on('end', () => console.log('Done'));

 if(audio) {
 proc.addInput(audio);
 }

 proc.run()
 
});



using the above code, the video is being download locally in the the server in the specified path.


but i want to download the video in the client browser who sent the request. i tried :


proc.pipe(res); 



but it didn't work, it's my first time working with ffmpeg , so it would be nice if someone give me a hint


-
msmpeg4 : Split encoding backend code off from general backend code.
18 février 2012, par Diego Biurrunmsmpeg4 : Split encoding backend code off from general backend code.
-
Revision 25110038f7 : Merge "Using crop_{width, height} instead of {width, height}."
1er mai 2014, par Dmitry KovalevMerge "Using crop_width, height instead of width, height."