
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9164)
-
ffmpeg slide showing corrupted
20 février 2020, par devcrazyI’m trying to use ffmpeg to create a slide showing video from bulk images.
I tested with 3 images and the names are0.jpg, 1.jpg, 2.jpg
I assigned 5 seconds per slide and the video length is 15s.
I executed the following command
ffmpeg -r 0.2 -i tmp/%d.jpg -vcodec mpeg4 -y myslide.mp4
Of course, it seems all the things are normal and the video file is created.
But when I play it, the last slide are not shown. As I change the video players, occurred the same thing. Some players are corrupted when the progress is in last slide.
Why is this happened ? Wrong parameters ? -
FFmpeg Get the previous 30 seconds of m3u8 stream
17 novembre 2019, par Garret HarpI currently am trying to use an m3u8 file of a live stream to get the previous 30 seconds of what happened and save it to an mp4 file, basically a clip of the last 30 seconds of the live stream.
I am currently running the following FFmpeg command :
ffmpeg -live_start_index 0 -i source.m3u8 -c copy -ss 30 -t 30 output.mp4
Rather than getting the previous 30 seconds of what happened on the stream, it gets 30 seconds of the stream once the command is run.
Does anyone know how I could change this so go back 30 seconds in the stream to save over what previously happened ?
-
How to stream video with ffmpeg and node express
8 septembre 2019, par Sourav GoluiNode.js Code. I am trying to stream a high definition video to mobile video
var constVideoUrl = 'uploads/videos/q1080/';
app.get('/video', function(req, res) {
res.contentType('flv');
var pathToMovie = constVideoUrl + 'video-1567925616174.mp4';
var proc = ffmpeg(pathToMovie)
.size('320x200')
.preset('flashvideo')
.on('end', function() {
console.log('file has been converted succesfully');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
.pipe(res, {end:true});
});I used it as a video url
<video controls="controls">
<source src="http://localhost:3000/video">
</source></video>