Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (20)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (5381)

  • ffplay won't with with more than 6 audio channels

    13 juin 2020, par Hiko Haieto

    I am trying to stream (raw) video and audio from a capture device as part of my home media setup (with my pc acting similarly to a receiver in a typical home theatre setup), but the biggest problem I haven't been able to get past is that I haven't been able to get ffplay to work with all 8 channels in 7.1 streams - two simply get dropped, despite it recognising 8 channel input or me specifying a 7.1 layout.

    



    I have been able to confirm that all 8 channels are present in the source by first using ffmpeg to save the output of a speaker test to a file and playing that back with both mplayer (which works) and ffplay (which doesn't). I might simply use mplayer if it weren't for the fact that piping output from ffmpeg adds too much latency for real-time use. I am using libSDL version 2.0.12 and ffplay 4.2.3, both of which are the latest at the time of writing and are ostensibly supposed to support 7.1 audio.

    



    Using output recorded from speaker-test -c 8, I am using the following to play it back in mplayer :

    



    mplayer -channels 8 -rawaudio channels=8 -format s16le -demuxer rawaudio speaker-test.pcm


    



    and the following to play it back in ffplay :

    



    ffplay -f s16le -ac 8 -af 'channelmap=channel_layout=7.1' speaker-test.pcm


    



    No matter what I try, ffplay is dropping the two side channels. Why might ffplay not be producing output for all 8 channels, and how might I fix it ?

    


  • avformat/matroskaenc : Check for failure when writing SeekHead

    29 décembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Check for failure when writing SeekHead
    

    mkv_write_seekhead() would up until now try to seek to the position where
    the SeekHead ought to be written, write the SeekHead and seek back. The
    first of these seeks was checked as was writing, yet the seek back was
    unchecked. Moreover the return value of mkv_write_seekhead() was unchecked
    (the ordinary return value was the position where the SeekHead was written).

    This commit changes this : Everything is checked. In the unseekable case
    (where the first seek may nevertheless work when it happens in the buffer)
    a failure at the first seek is not considered an error. In any case,
    failure to seek back is an error.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • How to use the FFmpeg blackdetect filter for the following image

    17 septembre 2021, par dinesh47

    I am using FFmpeg to find the blackdetect from a mp4 video file. but for some reasons file with very low light or poor background at night get detected as black frame For sample i have attached the frame which detected as black

    &#xA;

    My ffmpeg filter setting is "blackdetect=d=121:pix_th=0.00"

    &#xA;

    my file has a resolution of 1280*720 and frame rate of 30 which uses decoder format of 4:2:0 YUV&#xA;enter image description here

    &#xA;

    There are 2 Questions

    &#xA;

    1.Why the ffmpeg lib detects this as black frame ?

    &#xA;

    2.How to over come this ?

    &#xA;