Recherche avancée

Médias (91)

Autres articles (52)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5642)

  • How do I set the first and last frame of a video to be an image ?

    16 septembre 2011, par user205865

    HTML 5 implementations are different across various browsers. In firefox, the image specified by the placeholder attribute will be shown until the user clicks play on the video. In chrome, the placeholder image is shown until the video is loaded (not played), at which point the first frame of the video is shown.

    To reconcile this issue, I would like to set the first frame of the video to the placeholder image so that the experience will be the same in both browsers.

    I would preferably do this using ffmpeg or mencoder. I have very limited experience using these however, so if someone could point me in the right direction, I would be much obliged.

    Thanks !

  • Recommended video encoding settings for Streaming

    15 septembre 2011, par jc david

    I'm converting converting videos using ffmpeg on CentOS but i can't seem to find the recommended commands/settings suitable for streaming like in Youtube for my site. What could be the best setting for converting videos ? And what would be the best video format ?

  • Add audio (with an offset) to video with FFMPEG

    5 novembre 2011, par slotishtype

    I have a 10 minute video and a 50 minute audio mp3.
    The video starts at 500 seconds into the audio.
    Using FFMPEG, how can I add the the audio to the video but specify a 500 seconds audio offset (So that they sync up) ?

    EDIT:::: :

    Down the bottom of this page it suggests how to specify an offset.

    $ ffmpeg -i video_source -itsoffet delay -i audio_source -map 0:x -map 1:y ......

    However, when I apply this, it still starts the audio from the start.

    Thanks