
Recherche avancée
Autres articles (101)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (10119)
-
Pipe PhantomJS output to FFmpeg
10 avril 2017, par Hasse AndersenI am running PhantomJS using Selenium WebDriver (C#).
I’m trying to video record my browser using FFmpeg as shown in the 2 tutorials :
https://mindthecode.com/recording-a-website-with-phantomjs-and-ffmpeg/
As explained in the tutorials, I’ll need to pipe output the phantomJS process to ffmpeg.
I know how to add arguments to phantomjs, like the following :
var svz = PhantomJSDriverService.CreateDefaultService();
svz.AddArgument("ffmpeg -y -c:v png -f image2pipe -r 24 -t 10 -i - -c:v libx264 -pix_fmt yuv420p -movflags +faststart output.mp4");
var driver = new PhantomJSDriver(svz);However, I don’t know how to add the argument as pipe. I have tried adding the pipe symbol before the actual argument but that doesn’t seem to work.
So, my question is, how do I pipe the output of PhantomJS using selenium webdriver ?
-
Unable to find a suitable output format for 'pipe' - Long ffmpeg code
7 avril 2017, par I.Alexthis its my code which its pretty long.
Can you tell me please why its not working ?ffmpeg -i input.mp4 - filter_complex \
"[0:v]split=4[v0][v1][v2][v3]; \
[v0]trim=start_frame=0:end_frame=1,loop=90:1:0,setpts=N/FRAME_RATE/TB[0v]; \
[v1]trim=start_frame=1:end_frame=301,loop=90:1:299,setpts=N/FRAME_RATE/TB[1v]; \
[v2]trim=start_frame=301:end_frame=601,loop=90:1:299,setpts=N/FRAME_RATE/TB[2v]; \
[v3]trim=start_frame=601:end_frame=900,loop=90:1:298,setpts=N/FRAME_RATE/TB[3v]; \
aevalsrc=0:d=3[0a]; \
[0:a]asplit=3[a1][a2][a3]; \
[a1]atrim=0:10,asetpts=N/SR/TB[1a]; \
[a2]atrim=10:20,asetpts=N/SR/TB[2a]; \
[a3]atrim=20:30,asetpts=N/SR/TB[3a]; \
[0v][0a][1v][1a][2v][2a][3v][3a]concat=n=4:v=1:a=1[v][a]" \
-map "[v]" -map "[a]" outva.mp4I get this : Unable to find a suitable output format for ’pipe :’
pipe: : Invalid argument -
ffmpeg pipe response how to play javascript ?
30 mars 2017, par 최진영Hello i have some question
i trying app.post and response angular2
here is my code
function.js
var url = 'https://www.youtube.com/watch?v=' + id;
try {
youtubeStream(url).pipe(res)
} catch (exception) {
res.status(500).send(exception)
}response.ts
this.loading = true
var headers = new Headers();
var query = {
"videoURL" : this.tracklist[0].videoURL
}
headers.append('Content-Type', 'application/json');
this.http.post('http://localhost:4100/toMp3',query,{headers: headers}).subscribe((res) => {
console.log(res) <-- plz check picture
});console.log(res)
I do not know how to play stream data in _body