Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (31)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (5458)

  • Revision 6322 : Par défaut on a des controles sur la vidéo

    10 février 2012, par kent1 — Log

    Par défaut on a des controles sur la vidéo

  • Capture video on iOS device and live stream it to a server (or another mobile)

    13 février 2015, par theDuncs

    I want to be able to record footage using my iOS device and stream it directly to a server.

    There’s quite a few articles on S.O. that talk about this, but I’m not sure any have answered the question very well.

    Should I be using HTTP Live Streaming, or is this just for sending data to an iPhone ?
    Should I be using AVCaptureSession to grab the video (a segment at a time ?), sending each segment to the server ?
    Should I be using AVCaptureVideoDataOutput and ffmpeg for streaming ?

    I’m a little lost with all this, so any sample code or docs or links would be really appreciated.

    Thanks for your help guys.

    Duncan

  • HTML5 Video FFMPEG Shell Script

    18 novembre 2011, par Schermy

    I wrote this quick and dirty shell script to run ffmpeg over a bunch of files to generate webm/ogg/h.264 videos for a HTML5 site.

    #!/bin/bash

    ext=$1
    enc=$2

    #!/bin/bash
    for file in *.$ext; do
           while pidof /usr/local/bin/ffmpeg; do sleep 10; done >/dev/null

           ffmpeg -i "$file" -s 1280x720 -b 500k  "${file/%$ext/$enc}"  
    done

    It works great for my purposes but I've noticed that each video now takes a lot longe to convert and ffmpeg is not taking advantage of my multi-core setup.

    I would like to improve this script when I have some time and make it available for use by others but I'd like to solve this issue first.

    Thanks in advance for all of your help.

    P.S. This is setup to use the ffmpeg installation from brew on the Mac (and yes I would like to make this script more platform agnostic later on).