Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (2906)

  • avcodec/adpcm : Clip step index for ADPCM_IMA_APM

    1er mars 2020, par Michael Niedermayer
    avcodec/adpcm : Clip step index for ADPCM_IMA_APM
    

    Fixes : out of array access
    Fixes : 20828/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_IMA_APM_fuzzer-5712770106654720

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

    • [DH] libavcodec/adpcm.c
  • movenc : Place the sidx index after the initial moov/mdat pair

    9 août 2015, par Martin Storsjö
    movenc : Place the sidx index after the initial moov/mdat pair
    

    For fragmented files with non-empty moov, with a fragment index
    (sidx), place the index after the initial moov/mdat pair.

    Previously, for this pathological case, the index was written
    at the start of the file.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • Cross origin issue in html 5 player

    2 septembre 2020, par Danish Abdul Hamid

    Hey Guys i am new this field i encoded video through ffmpeg and for packaging used bento 4 for output single file in ts below the command i used

    &#xA;

    mp4hls —hls-version 4 —output-single-file —segment-duration 6 input_7000kb.mp4 input_5000kb.mp4 input_3500kb.mp4

    &#xA;

    and this is output file http://stream.simpaisa.com/output/master.m3u8 when i open this url in html 5 player its showing error "not allowed by Access-Control-Allow-Headers in preflight response" but in android and vlc this url is working. server already have .htaccess file for cross origin allow .

    &#xA;

    when i used this command mp4hls —hls-version 4 input_7000kb.mp4 input_5000kb.mp4 input_3500kb.mp4

    &#xA;

    the output file is http://stream.simpaisa.com/new/output/master.m3u8 and this file is working in html 5 player no cross origin issue

    &#xA;

    Please tell me whats the issue

    &#xA;

    this is .htaccess file configuration

    &#xA;

    Header set Access-Control-Allow-Origin "*"&#xA;Header set Access-Control-Allow-Credentials "true"&#xA;Header set Access-Control-Allow-Methods "GET,HEAD,OPTIONS,POST,PUT"&#xA;Header set Access-Control-Allow-Headers "Access-Control-Allow-Headers, Origin,Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, Access-Control-Request-Headers"&#xA;RewriteEngine On

    &#xA;

    RewriteCond %REQUEST_FILENAME !-f&#xA;RewriteRule ^(.*)$ index.php [QSA,L]

    &#xA;