Recherche avancée

Médias (91)

Autres articles (41)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7843)

  • ffmpeg : Add a missing line break when requesting a sample.

    2 février 2017, par Carl Eugen Hoyos
    ffmpeg : Add a missing line break when requesting a sample.
    
    • [DH] ffmpeg.c
  • avcodec/exr : Check line size for overflow

    26 septembre 2020, par Michael Niedermayer
    avcodec/exr : Check line size for overflow
    

    Fixes : signed integer overflow : 570425356 * 6 cannot be represented in type 'int
    Fixes : 25929/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5099197739827200

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/exr.c
  • automatically run script recording video at interval using command line and ffmpg

    29 décembre 2014, par arrie

    I’m really a beginner noob newbie command line noob. But. I’m trying to create a script that automatically starts my isight camera when turning on my mac laptop. It should create clips of about 5 seconds at an interval of 5 hours or so. (These numbers I can change of course later on if I have the basis for my script).

    So what I in fact need is (i think) a launch script, that launches a video recording script.

    Right now I’m as far as my video recording script, which is not finished : camera.sh

    #!/bin/bash

    FNAME=videocapture_`date +"%F_%H_%M"`.mpg
    echo $FNAME

    ffmpeg -f -t "0.20avfoundation -i "" $FNAME

    This in fact records a video when I play the script in the command line, until I tell it to quit. These videos are then named according to the date etc. But of course I want it to automatically record videos, in an already determined duration. And I just can’t seem to figure out how to make it happen. I come back to different kind of scripts using isight capture, which in fact doesn’t seem to exist anymore, and even so, I would like to stay with my own basis script just because I understand it haha.

    Hopefully someone here can help me figure this out ! Much appreciated :) Thanks !