Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Supporting all media types

    13 avril 2011, par

    Unlike 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, par

    L’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, par

    The 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
    avformat/mpegtsenc : use standard pids for m2ts
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/muxers.texi
    • [DH] libavformat/mpegts.h
    • [DH] libavformat/mpegtsenc.c
  • Using FFmpeg or Similar to Normalize audio in a video to EBU R128 standard

    12 mai 2020, par MrNeedHelpPlease

    This is my first time here on stack overflow asking question.

    &#xA;&#xA;

    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.

    &#xA;&#xA;

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

    &#xA;&#xA;

    My current process

    &#xA;&#xA;

    Watch_folder > Encoding to MXF > Output_folder

    &#xA;&#xA;

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

    &#xA;&#xA;

    What I have done so Far :

    &#xA;&#xA;

    FFMPEG :

    &#xA;&#xA;

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

    &#xA;&#xA;

    got the result :

    &#xA;&#xA;

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

    &#xA;&#xA;

    Output Integrated : -17.1 LUFS&#xA;Output True Peak : -1.5 dBTP&#xA;Output LRA : 5.3 LU&#xA;Output Threshold : -27.6 LUFS

    &#xA;&#xA;

    Normalization Type : Dynamic&#xA;Target Offset : +1.1 LU

    &#xA;&#xA;

    then i did

    &#xA;&#xA;

    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

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;&#xA;

    ffmpeg-normalize

    &#xA;&#xA;

    I did the following

    &#xA;&#xA;

    ffmpeg-normalize input.mxf -c:a pcm_s32le -ar 48000 -o output.mxf&#xA;but this gives me errors.

    &#xA;&#xA;

    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.

    &#xA;

  • Safari on Yosemite doesn't get total media duration from init file of video generated using MP4Box

    30 avril 2015, par sonam

    I 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 ?