
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (58)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8190)
-
How to collect specific Youtube channel uploaded videos and use FFMPEG to convert to MP3 [on hold]
6 novembre 2014, par Daniel KirkbyI am currently attempting to create a php script that can crawl a Youtube channel’s uploaded videos and parse them through FFMPEG to a mp3.
.eg (https://www.youtube.com/user/PandoraMuslc/videos) download each .flv then convert to mp3 using a script that can do the whole channel instead of one at a time as there are a few hundred uploads. while I have found scripts that can make FFMPEG convert to mp3 and scripts to show the uploaded videos in XML I kinda just want to figure out how to get each video automaticly, Maybe a script that can be cron’d ?
-
Capture Thumbnail Whilte Downloading Youtube Video
31 décembre 2012, par MinimeI want to capture a thumbnail of Youtube video on certain timeline. (e.g. 3.2sec)
I used ytdl and fluent-ffmpeg with node.js to implement it.
It was possible to capture a thumbnail when the downloading has finished.var fs = require('fs');
var ytdl = require('ytdl');
var ffmpeg = require('fluent-ffmpeg');
var videostream = fs.createWriteStream('video.flv');
var myytdl = ytdl('http://www.youtube.com/watch?v=A02s8omM_hI');
myytdl.pipe(videostream);
videostream.on('close',function() {
console.log('Downloading complete...');
var proc = new ffmpeg({ source: 'video.flv', nolog: true })
.withSize('150x100')
.takeScreenshots(1, '/home/test', function(err) {
console.log(err || 'Screenshots were saved');
});
});However, I couldn't implement to capture a thumbnail while downloading. Basic idea of what I want to do is as below.
- Download Youtube video starting at X sec. (Worked)
- Pipe it to Readable/Writable(Duplex) Memory Stream (Need Advise)
- During downloading, check if stream has enough data to capture the first frame, which is at X sec. (Need Advise)
- Capture the first frame, then stop downloading
For 2, I've realized that node.js will have Duplex Stream on coming v0.9.x, but it seems not working properly. Anyone who has good idea to implement bullet 2,3 ?
-
Is "begin" param dead in Youtube's *.c.youtube.com/videoplayback ?
23 janvier 2013, par MinimeI tested Youtube video download with begin param using ytdl, and realized that it's not working properly. Below is an URL with begin param. (It won't work on your side because it's session-IP address based.)
I traced Youtube site by myself to see if there are any recent changes on their black boxed
API. And I found that begin param is no longer put in videoplayback, but put in user_watch as below.Its response is
<?xml version="1.0" encoding="utf-8"?>
And videoplayback only has range param, which indicate byte range where to pull. However, I couldn't figure out exact mechanism how new begin param works.
Can anyone explain how to pull a video starting from specific position(msec) in new API ?