Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (64)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • 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 (...)

Sur d’autres sites (7335)

  • Winamp Media Player Released with WebM Support

    21 juillet 2010, par noreply@blogger.com (John Luther)

    Winamp Media Player now supports native WebM playback. Read all about it on their blog.

  • mov : Properly abide by the track's media duration

    23 avril 2018, par Derek Buitenhuis
    mov : Properly abide by the track's media duration
    

    The track's media duration from the mdhd atom takes precedence
    over both the stts and elst atom for calculating and setting
    the track's total duraion.

    Technically, we shouldn't be using the stts atom at all for
    calculating stream durations.

    This fixes incorrect stream and final packet durations on files
    with edit lists that are longer than the media duration.

    The FATE changes are expected, and output is more correct (the
    AAC frame is not 1028 samples).

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
    • [DH] tests/ref/fate/adtstoasc_ticket3715
  • Node Media Server not streaming when I change ffmpeg argv

    30 mai 2020, par joao.jlf4

    I'm trying to change the ffmpeg spawn argv on Node Relay Session but it does'nt work beacuse node media server finishes the stream, my argv array :

    &#xA;&#xA;

    let argv = [&#xA;      &#x27;-fflags&#x27;, &#xA;      &#x27;nobuffer&#x27;, &#xA;      &#x27;-i&#x27;, &#xA;      this.conf.inPath, &#xA;      &#x27;-b:v&#x27;,&#xA;      &#x27;2000k&#x27;,&#xA;      &#x27;-b:a&#x27;,&#xA;      &#x27;128k&#x27;,&#xA;      &#x27;-c:v&#x27;,&#xA;      &#x27;libx264&#x27;,&#xA;      &#x27;-preset veryfast&#x27;,&#xA;      // &#x27;-c&#x27;, &#xA;      // &#x27;copy&#x27;, &#xA;      &#x27;-f&#x27;, &#xA;      format, &#xA;      this.conf.ouPath];&#xA;

    &#xA;