Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (2940)

  • Revision d0796bcd0a5788f944919812a2d65232ee92110a : "pour faire logout il faut utiliser le path comme pour login sinon ce ...

    26 septembre 2007, par Cerdic — Log

    "pour faire logout il faut utiliser le path comme pour login sinon ce n’est pas le meme cookie qu’on efface" git-svn-id : svn ://trac.rezo.net/spip/branches/spip-1.9.2@10423 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d

  • Revision d7e8490d04 : Add optional mode_info printout function for debug purpose This commit adds an

    26 juin 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encoder.c



    Add optional mode_info printout function for debug purpose

    This commit adds an optional function to print out the mode_info
    loaded from external file for debug purpose. It can be turned on
    by setting PRINT_MODE_INFO_LOAD 1.

    Change-Id : I8612801cbf2eb38213105afb7434da2584b3ff2c

  • Delay in video playback. Not able to identify the cause - AWS S3 region / ffmpeg / Videojs

    17 septembre 2016, par Himansu Kisan

    We are not able to identify the cause for random behavior while playing video on our website. (Sorry, cant share a link since the videos are for registered users only)
    The videos sometimes plays instantly and sometimes it takes over 1 minute to start. Not sure what we are doing wrong.

    We are using AWS S3 Oregon region (not the closest to target region, but it is cheaper) to store video files.
    The video files are encoded using ffmpeg. Below is the syntax

    ffmpeg -i input.mts -codec:v libx264 -threads 4 -movflags +faststart -profile:v high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale="trunc(oh*a/2)*2:720" "output.mp4"

    ffmpeg -i input.mts -codec:v libvpx -threads 4 -quality good -cpu-used 5 -b:v 500k -maxrate 500k -bufsize 1000k -qmin 10 -qmax 42 -vf scale="trunc(oh*a/2)*2:720" -codec:a libvorbis -b:a 128k "output.webm"

    On website, we are using Videojs 5.10.8.
    Below is the code snippet

    <video class="video-js vjs-default-skin vjs-big-play-centered" preload="none" controls="controls" poster="abcd.jpg" style="width:100%;height:100%;min-height:360px;" data-setup="{&quot;autoplay&quot;:true}">
    <source src="abcd.mp4" type="video/mp4"></source>
    <source src="adcd.webm" type="video/webm"></source>
    <p class="vjs-no-js">
       To view this video please enable JavaScript, and consider upgrading to a web browser
       that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
    </p>
    </video>

    What are we doing wrong ? Please help us out.