Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (24)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4101)

  • How to read remote video on Amazon S3 using ffmpeg

    19 septembre 2012, par virtualize

    I need to create poster frames from videos hosted on Amazon S3 via ffmpeg.

    So is there a way to use the remote video file directly in ffmpeg command line like this :
    ffmpeg -i "http://bucket.s3.amazonaws.com/video.mp4" -ss 00:00:10 -vframes 1 -f image2 "image%03d.jpg"

    ffmpeg just returns :

    http://bucket.s3.amazonaws.com/video.mp4: I/O error occurred<br />
    Usually that means that input file is truncated and/or corrupted.

    I also tried forcing ffmpeg to use the videos mp4 container for reading :
    ffmpeg -f mp4 -i "http://bucket.s3.amazonaws.com/video.mp4" ...
    But no luck.

    Wget this video from S3 and processing it locally works fine of course,
    as well as reading the file remotely from other 'standard' http servers.
    So I know that ffmpeg supports remote file reading, but why not on S3 ?

  • some of google drive mp4 files are not playing in jwplayer

    14 juin 2017, par dev

    I am working on to play the mp4 videos from google drive but I am facing the problem that some mp4 files are playing well while some mp4 files are not playing at all insteal "file not found" error shows.

    This is what I am doing.
    link :

    https://drive.google.com/file/d/0BwnSGB-C8mEGUmY2U1dhcVNiWjQ/view?usp=sharing

    My code is :

    jwplayer("player_embed").setup ({
         file:   "https://docs.google.com/uc?id=0BwnSGB-C8mEGUmY2U1dhcVNiWjQ",
         type:   "mp4",
         primary: "flash",
         image: image_link,
         width:  950,
         height: 370,
         tracks:[{
           file: subtitle_link,
           label: "English",
           kind : "captions",
           default: "true",
         }]
         });

    is there any mime type issue or something else I need to do ?
    is there any other player that can play videos,subtitles,image poster from google drive ?

  • How to get a mp4 stream from a mp4 file using java ?

    16 décembre 2015, par Vishnu
    <video class="video-js vjs-default-skin embed-responsive-item" controls="controls" preload="auto" width="640" height="264" responsive="true" poster="http://video-js.zencoder.com/oceans-clip.png" data-setup="{&quot;example_option&quot;:true}">
            <source src="http://video-js.zencoder.com/oceans-clip.mp4" type="video/mp4"></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>

    The above would play stream video from the specified src.

    How can a similar streaming url be generated from a mp4 file using java so that the streaming url can be used in the "src" to play the video.