Recherche avancée

Médias (91)

Autres articles (63)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5976)

  • avfilter/video : pick sar from link

    7 décembre 2017, par Paul B Mahol
    avfilter/video : pick sar from link
    

    It should not be needed for each filter that sets sample aspect ratio
    to set it explicitly also for each and every frame, instead that is
    automatically done in get_buffer call.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/video.c
  • Overcome MPEG 2 TS Link Buildup Latency

    18 février 2015, par user2389323

    I have built a TS audio video link. I send encoded raw audio and video from one computer to another using TS over Ethernet. I am using FFMPEG libraries for this. Everything works fine except there is a latency build up with time.

    When i play the raw video content at both encode and decoder ends, initially there is very little visible latency(less than a second). But when time increases the difference of the two videos slowly increase. I am playing the received video using a fixed frame rate.

    As i have understood it is possible to us the PCR value to overcome this latency build up problem but it is not clear to me how to use that value..

    Can someone kindly tell me how to use the PCR value of a TS stream to avoid latency build up ?

    Thank you.

  • How to link ffmpeg library by cmake ?

    20 décembre 2018, par paradisal programmer

    I want to use ffmpeg library in my c++ program.

    I’ve downloaded ffmpeg source.
    During make&compile process,
    i had this error :
    UINT64_C not defined !
    After some search :

    1.Adding the following code to libavutil/common.h

    #ifndef INT64_C
    #define INT64_C(c) (c ## LL)
    #define UINT64_C(c) (c ## ULL)
    #endif

    2../configure&amp;compile
    had solved that problem.

    But now i want to link this library to a simple encoding method by using cmake files.
    I’ve tried some sample of CMakeLists.txt but i still have
    "undefined refrence " error
    many thanks !

    • I am working in ubuntu
    • using g++ as c++ compiler
    • using FFmpeg 2.0.1