Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (45)

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

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (6715)

  • Access files at the same time from different folders and save in third folder

    5 avril 2019, par Manza Ari

    I want to access files from two different folders process them and save the resultant file in third folder. I am making a video file from images belong to two different folders.

  • h264_redundant_pps : Fix looping over an access unit's units

    20 juin 2019, par Andreas Rheinhardt
    h264_redundant_pps : Fix looping over an access unit's units
    

    When looping over an access unit's units in positive direction and
    deleting some of them, one needs to make sure that a unit that is at
    the position of a unit that just got deleted gets checked, too.

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

    • [DH] libavcodec/h264_redundant_pps_bsf.c
  • ffmpeg - Access elements of AVCodecContext

    9 avril 2018, par Hamed

    I want to access some members of my AVCodecContext *av_ctx in my program. It is fine when I compile it in 32bit version, But when I change it to 64bit this elements act like they been shifted.

    For example, I want to get av_ctx->coded_width and av_ctx->coded_height (sometimes they are different from av_ctx->width and av_ctx->height) and store them in some variables. Now when I debug this program in 32bit version it’s Ok, but in 64bit version this values are wrong and when I check my structure I can see the next two elements (av_ctx->gop_size and av_ctx->pix_fmt) has the values that I want.

    I checked AVCodecContext declaration on avcodec.h and it (in comments above structure declaration) says :

    Please use AVOptions (av_opt* / av_set/get*()) to access these fields from user applications.

    I think this might be the right way to get these elements but I don’t know what is this AVOptions, I searched it but couldn’t find what is it exactly and how can I use it.