
Recherche avancée
Autres articles (45)
-
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 -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (5805)
-
Compressing a Video for HLS Streaming
12 mars 2018, par jAndyI’m in the situation where I have a source file (very high quality, direct output from FCPX) which is in 1080p resolution.
I use
ffmpeg
to create a 240, 360, 480 and 720 version to have an adaptive stream quality via HLS, so far so good. My question is about the strategy I’m using.
Right now, I always use the original file as input forffmpeg
. I was wondering if it wouldn’t be a better idea to convert from 1080 to 720 with full compression algorithms and after that, just re-scale from 720 to 480, 360 and 240.I’m not really into video compression and ffmpeg, so I’d just like to hear some expert opinions on this approach. Is there any advantage to always go "all the way" (original file -> compressed/rescaled file) ?
-
Replacing segments of MPEG DASH video
10 septembre 2018, par Mike19846546I am working with a converted DASH video with a manifest file containing a segmentList of all video segments. Is it possible to take multiple of these segments, encode an image overlay (using ffmpeg for example) and change the manifest file to correspond to the converted video segments combined with the original ones (those following the converted ones) without re-encoding the entire original video with the image overlays and then converting it to DASH ?
-
Beautify multiple ffmpeg commands
14 février 2018, par Vitalis HommelI am cutting video and put music to this video that contains of two concatenated audio files that are being overlayed by the original audio and cut to fit the length, while having a smooth fade in.
It works, but it is clumsy. Is there a shorter version and if yes, is this shorter version quicker ?
ffmpeg -y -i concat:"audio1.mp3|audio2.mp3" -acodec copy "audio1 + audio2.mp3"
ffmpeg -y -ss 00:01:07.798 -t 00:00:04.000 -i "input.mp4" -af "afade=t=in:ss=0:d=1,afade=t=out:st='00\:00\:02.309':d=1" -c:v libx264 1.mp4
ffmpeg -y -i 1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts 1f.ts
....
ffmpeg -y -i "concat:1f.ts|2f.ts..." -bsf:a aac_adtstoasc -movflags faststart -c copy "target.mp4"
ffmpeg -y -i "target.mp4" "Original.mp3"
ffmpeg -y -i "target.mp4" -an -c:v copy "temp.mp4"
ffmpeg -y -ss 00:01:54.321 -t 00:02:00.000 -i "audio1 + audio2.mp3" -c:v copy -af "afade=t=in:ss=0:d=4" "Musik.mp3"
ffmpeg -i Original.mp3 -i Musik.mp3 -vn -filter_complex "[0:a]volume = 0.9:precision =fixed[a0];[1:a] volume=0.1:precision=fixed[a1];[a0] [a1] amix=inputs=2:duration=first:dropout_transition=3[a]" -map "[a]" vor.mp3
ffmpeg -y -i "temp.mp4" -i "vor.mp3" -c copy "target.mp4"