
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (67)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9222)
-
ffmpeg lossless mp4 to image sequence conversion (and back to mp4 again) [closed]
2 juin 2021, par Cinderella CostallasI've browsed google for hours now and cant find anything about this.
I'm really struggling to extract the frames of an mp4 to an image sequence without any quality loss.
I need to be able to convert the image sequence back to an mp4 again also with no quality loss.
My purpose for this is to essentially drop half of all frames, making a 60fps mp4 into 30fps.
Previously the only other way I've found of doing this was to create a rawbitstream which takes up an absurd amount of disk space, and I don't want that. You can find that post here. Anything that can help me achieve this, I would greatly appreciate if you could share it.


-
node-fluent-ffmpeg editing video start time when merging
3 mars 2018, par DarkArtistryI am trying to understand if this is valid, to add in the
setStartTime
option half way through merging my audio :new FFmpeg({ source: '/path/to/part1.avi' })
.setStartTime(120)
.mergeAdd('/path/to/part2.avi')
.mergeAdd('/path/to/part2.avi')
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('end', function() {
console.log('Merging finished !');
})
.mergeToFile('/path/to/merged.avi', '/path/to/tempDir'); -
Reduce bitrate of video with ffmpeg
4 janvier 2021, par Z.ChorlevI'm using ffmpeg to check the bitrate of given videos and my goal is to reduce it to half of the original bitrate.


For test purpose I executed this command


ffmpeg -i example.avi



and I saw that the bitrate of the videos was around 1030 kb/s


I want to know which is the unit that ffmpeg uses for bitrate.


ffmpeg -i example.aviffmpeg -b 515 new_video.avi



I used b:a and b:v for audio and video, but the result is not correct again
I tried with just 515 and 515k, but still not correct ...


My goal is to have output video with 515 kb/s bitrate.