Recherche avancée

Médias (91)

Autres articles (89)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • lavd/fbdev : pass proper memory map length

    18 octobre 2013, par Lukasz Marek
    lavd/fbdev : pass proper memory map length
    

    fbdev->data was allocated with size fbdev->fixinfo.smem_len, release data
    in fbdev_read_close() using the same size.

    Signed-off-by : Lukasz Marek <lukasz.m.luki@gmail.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] libavdevice/fbdev.c
  • AWS MediaConvert generating double length video

    1er mai 2024, par user1hjgjhgjhggjhg

    I am new to aws media convert. I am trying to convert the video but the final output video becomes double the length from the original one. for example if I have a video 30 seconds long, it will create 60 seconds long final video. Below is my son.

    &#xA;

    {&#xA;  "Queue": "arn:aws:mediaconvert:us-west-2:730335xxxxx:queues/Default",&#xA;  "UserMetadata": {},&#xA;  "Role": "arn:aws:iam::73033541xxxx:role/service-role/MediaConvert_Default_Role",&#xA;  "Settings": {&#xA;    "TimecodeConfig": {&#xA;      "Source": "ZEROBASED"&#xA;    },&#xA;    "OutputGroups": [&#xA;      {&#xA;        "Name": "DASH ISO",&#xA;        "Outputs": [&#xA;          {&#xA;            "ContainerSettings": {&#xA;              "Container": "MPD"&#xA;            },&#xA;            "VideoDescription": {&#xA;              "CodecSettings": {&#xA;                "Codec": "H_264",&#xA;                "H264Settings": {&#xA;                  "MaxBitrate": 3500000,&#xA;                  "RateControlMode": "QVBR",&#xA;                  "SceneChangeDetect": "TRANSITION_DETECTION"&#xA;                }&#xA;              }&#xA;            },&#xA;            "NameModifier": "_output1"&#xA;          }&#xA;        ],&#xA;        "OutputGroupSettings": {&#xA;          "Type": "DASH_ISO_GROUP_SETTINGS",&#xA;          "DashIsoGroupSettings": {&#xA;            "SegmentLength": 30,&#xA;            "Destination": "s3://tutorial/video/",&#xA;            "FragmentLength": 2,&#xA;            "SegmentControl": "SINGLE_FILE"&#xA;          }&#xA;        }&#xA;      }&#xA;    ],&#xA;    "FollowSource": 1,&#xA;    "Inputs": [&#xA;      {&#xA;        "AudioSelectors": {&#xA;          "Audio Selector 1": {&#xA;            "DefaultSelection": "DEFAULT"&#xA;          }&#xA;        },&#xA;        "VideoSelector": {},&#xA;        "TimecodeSource": "ZEROBASED",&#xA;        "FileInput": "s3://tutorial/video/11 - video.mp4"&#xA;      }&#xA;    ]&#xA;  },&#xA;  "BillingTagsSource": "JOB",&#xA;  "AccelerationSettings": {&#xA;    "Mode": "DISABLED"&#xA;  },&#xA;  "StatusUpdateInterval": "SECONDS_60",&#xA;  "Priority": 0&#xA;}&#xA;

    &#xA;

    Please help

    &#xA;

  • avcodec/aacps : Fix length of array in function definition

    6 août 2021, par Andreas Rheinhardt
    avcodec/aacps : Fix length of array in function definition
    

    hybrid2_re() has a parameter declared as "const INTFLOAT filter[8]",
    although the actual argument for said parameter only has seven elements ;
    the code itself only uses seven elements, so change the parameter.

    Fixes a -Wstringop-overread warning with GCC 11.

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

    • [DH] libavcodec/aacps.c