Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (102)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6681)

  • I want to upload a camera video stream to Amazon S3 and download it to an Android phone. I'm completely new to this. How can I do this ?

    26 juin 2015, par Jackie Wu

    I’m really dumb and new to RTP/SIP. Is there a stack that’s recommended for uploading video to the cloud from a camera attached to a microprocessor ? What’s the difference between all the things I’m seeing - MPEG DASH, Live555, ffmpeg, and so on...?

    How does WhatsApp or Dropcam transmit live video ?

  • Errno::ENOENT (No such file or directory) in using ffmpeg on amazon-s3

    31 décembre 2015, par Haseeb Ahmad

    I have application which is using amazon s3 posting videos to buckets.

    When I do after_commit

    movie  = FFMPEG::Movie.new("#{self.video.url}")

    It gives error :

    Errno::ENOENT (No such file or directory - the file 'http://getpayad-dev.s3.amazonaws.com/ads/videos/000/000/017/original/Ufone_Tarzan_commercial_%28Ufone_Network_Quality%29_most_Funny_Ad.mp4?1451571295' does not exist):

    Same path copying and pasting in browser’s url work fine

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