
Recherche avancée
Autres articles (54)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7816)
-
avformat/mpegtsenc : use standard pids for m2ts
11 novembre 2019, par Marton Balint -
Using FFmpeg or Similar to Normalize audio in a video to EBU R128 standard
12 mai 2020, par MrNeedHelpPleaseThis is my first time here on stack overflow asking question.



I am stuck and really struggling with this. I am trying to make some of my MXF video files to be EBU r128 standard for its audio.



This means that it has to be -23 and not higher than 0.5.



My current process



Watch_folder > Encoding to MXF > Output_folder



I need to makesure when its comes to output folder, those MXF files are EBU R128 Loudness compliant.



What I have done so Far :



FFMPEG :



ffmpeg -i input.mxf -af loudnorm=I=-23:LRA=7:tp=-2:print_format=json -f null -



got the result :



Input Integrated : -15.1 LUFS
Input True Peak : +0.0 dBTP
Input LRA : 17.1 LU
Input Threshold : -26.2 LUFS



Output Integrated : -17.1 LUFS
Output True Peak : -1.5 dBTP
Output LRA : 5.3 LU
Output Threshold : -27.6 LUFS



Normalization Type : Dynamic
Target Offset : +1.1 LU



then i did



ffmpeg -i input.mxf -af loudnorm=I=-23:LRA=7:tp=-2:measured_I=-15.1:measured_LRA=17.1:measured_tp=0:measured_thresh=-27.6:offset=1.1 -ar 48k -y output.mxf



However, when i put it through the software
Eff
, it says that its not EBU compliant.


*EDIT :
This also reduces the quality. for example ; my 6 Gb becomes 250 MB and you can tell the quality downgraded



ffmpeg-normalize



I did the following



ffmpeg-normalize input.mxf -c:a pcm_s32le -ar 48000 -o output.mxf

but this gives me errors.


if i do it without the output file type, i get a mkv which will not work for me. i need it to be mxf.


-
Safari on Yosemite doesn't get total media duration from init file of video generated using MP4Box
30 avril 2015, par sonamI am trying to play HTML5 video using MediaSource Extesion. I am generating dash fragmnets using MP4Box. I am creating init fragment and respective dash fragments.
I am creating mediasource and adding init fragment to it. When this is done, all the browsers where media source extension is supported(chrome, firefox developer version, android chrome, windows 8 IE11), return correct media duration. But the same doesn’t work with safari on Yosemite, where spec says media source is supported. So on safari, media duration is updated as and when data fragments are appended to it progressively. How can I make it work in safari ? Is there something that is missing from init fragment and how to add it ?