
Recherche avancée
Autres articles (50)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (4217)
-
Converting mp4 to multiple resolutions using FFMPEG
12 avril 2017, par Edwin FlataunetI am developing a E-Learning website where people can upload videos.
When someone uploads a video, they usually upload it in 1080p full HD which is good.
Now the issue is that when people watch the videos, they are only in 1080p and some people have bad internet (including myself) so watching a video in 1080p is not optimal.So I assume that converting the video to different formats (720p, 360 etc..) is the best way to go here.
So I tried using FFMpeg, and it works, but its really slow, especially since some videos are over 10 minutes long and over 1gb in size.I use this command in FFMPEG :
ffmpeg -i video.mp4 -vf scale:1280:720 -strict -2 output.mp4
This works, but its really slow.
Is there any better way to do this ? Since some people upload 5-10 videos and every video has to be in 3 different formats (1080p(original) 720p, 360p).
Can someone give me some guidelines how to tackle this issue, as this kind of stops the website from progressing atm.
Thanks
-
Converting mp4 to multiple resolutions using FFMPEG
2 avril 2018, par Edwin FlataunetI am developing a E-Learning website where people can upload videos.
When someone uploads a video, they usually upload it in 1080p full HD which is good.
Now the issue is that when people watch the videos, they are only in 1080p and some people have bad internet (including myself) so watching a video in 1080p is not optimal.So I assume that converting the video to different formats (720p, 360 etc..) is the best way to go here.
So I tried using FFMpeg, and it works, but its really slow, especially since some videos are over 10 minutes long and over 1gb in size.I use this command in FFMPEG :
ffmpeg -i video.mp4 -vf scale:1280:720 -strict -2 output.mp4
This works, but its really slow.
Is there any better way to do this ? Since some people upload 5-10 videos and every video has to be in 3 different formats (1080p(original) 720p, 360p).
Can someone give me some guidelines how to tackle this issue, as this kind of stops the website from progressing atm.
Thanks
-
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