
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (60)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7527)
-
FFMPEG overlay dark frame
21 septembre 2016, par Pavel ChursinI have problem with FFMPEG overlaying. It adds black frame around objects with transparent border.
For example, take the yellow rectangle 100x100. Then generates video from it :./ffmpeg -loop 1 -i yellow.png -t 5 -vcodec qtrle yellow.mov
Then take a transparent PNG 100x100, within the green rectangle inside 75x75.
Overlay it on the first video :
./ffmpeg -i yellow.mov -i green.png -filter_complex 'overlay' -vcodec qtrle yg.mov
In the final video green rectangle has got dark frame.
How can I remove this frame ?
-
Normalizing with ffmpeg-normalize, slight variations in sound
20 mai 2022, par Antti RytsöläI have some flacs which I am trying to normalize for Spotify and Distrokid.


I got the guide from this post


ffmpeg-normalize inbound/*.flac -t -14 -lrt 11 -tp -1 -ext flac -c:a flac -of normalized/



Now the problem is ( before submitting to Distrokid ) that when listening to normalized versions there seems to be light deviations, like muffling, to the sound at half a second lenghts.


Small sample, towards the end.


Now I'm asking for help because even though I can try different settings I still want to conform to Spotify normalization guide.


The Spotify guide is as follows :


Target the loudness level of your master at -14dB integrated LUFS 
and keep it below -1dB TP (True Peak) max. This is best for lossy 
formats (Ogg/Vorbis and AAC) and makes sure no extra distortion’s 
introduced in the transcoding process.

If your master’s louder than -14dB integrated LUFS, make sure 
it stays below -2dB TP (True Peak) to avoid extra distortion. This 
is because louder tracks are more susceptible to extra distortion 
in the transcoding process.



and


ffmpeg version N-102727-g580e168a94-tessus
 ffmpeg-normalize v1.22.8





-
Merging/concatenating video and keeping sound in R using AV package
30 juin 2022, par Jack CornwallI am trying to merge/concatenate multiple videos with sound sequentially into one video using only R, (I don't want to work with ffmpeg in the command line as the rest of the project doesn't require it and I would rather not bring it in at this stage).


My code looks like the following :


dir<-"C:/Users/Admin/Documents/r_programs/"

videos<-c(
 paste0(dir,"video_1.mp4"),
 paste0(dir,"video_2.mp4"),
 paste0(dir,"video_3.mp4")
)

#encoding
av_encode_video(
 videos,
 output=paste0(dir,"output.mp4"),
 framerate=30,
 vfilter="null",
 codec="libx264rgb",
 audio=videos,
 verbose=TRUE
)



It almost works, the output file is an mp4 containing the 3 videos sequentially one after the other, but the audio present is only from the first of the 3 video and then it cuts off.


It doesn't really matter what the videos are. I have recreated this issue with the videos I was using or even 3 randomly downloaded 1080p 30fps videos from YouTube.


Any help is appreciated & thank you in advance.