Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (11)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (3610)

  • Additional : Add validation rule for mobile number of Russia Federatio…

    6 novembre 2018, par jehadja
    Additional : Add validation rule for mobile number of Russia Federation (#2207)
  • avformat/hls : change sequence number type to int64_t

    16 janvier 2021, par Zhao Zhili
    avformat/hls : change sequence number type to int64_t
    

    Fix atoi() overflow for large EXT-X-MEDIA-SEQUENCE.

    The spec says the type of sequence number is uint64_t. Use int64_t
    here since current implementation requires it to be signed integer,
    and hlsenc use int64_t too.

    • [DH] libavformat/hls.c
  • How to get the duration or total number of frame in ffmpeg filter ?

    1er juillet 2020, par Reasno

    I'm writing a filter in ffmpeg in which I have to get the duration of the video. The filter_frame function looks like followings :

    


    static int filter_frame(AVFilterLink* link, AVFrame* in) {
    AVFilterContext* avctx = link->dst;
    ExtractContext* privCtx = (ExtractContext*)avctx->priv;
    AVFilterLink* outlink = avctx->outputs[0];
    //here I want to get the duration or total number of frames:
}


    


    I have to get the duration or total number of frames in this function, but the only parameters of the function is AVFilterLink and AVFrame in which I cant find relative fields, so I dont know how to do.
Can you help me ? Thanks for your reply !