Recherche avancée

Médias (91)

Autres articles (84)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8689)

  • ffmpeg hevc decoding fail [android]

    8 mars 2016, par revannen

    I am trying to decode h.265 with x265 and ffmpeg library, so that I downloaded ffmpeg 2.8.6 tar and x265 1.9 ver from the official site.

    now, the problem is when I decode h.264 with
    avcodec_find_decoder(AV_CODEC_ID_H264) ;
    is totally fine. :)

    but, when I try to decode h.265 with
    avcodec_find_decoder(AV_CODEC_ID_H265) ;
    it tells lots of error log.
    like.

    I/ffmpeg(4153) : nal_unit_type : 32, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 33, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 34, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 19, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : No start code is found.

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : PPS id out of range : 0

    I/ffmpeg(4153) : Error parsing NAL unit #0.

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : PPS id out of range : 0

    I/ffmpeg(4153) : Error parsing NAL unit #0.

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : PPS id out of range : 0

    I/ffmpeg(4153) : Error parsing NAL unit #0.

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0

    I/ffmpeg(4153) : PPS id out of range : 0

    I/ffmpeg(4153) : Error parsing NAL unit #0.

    E/decode(4153) : [407] [idvr] Error while decoding frame ! [%d]

    E/native(4153) : FAIL......-12

    1. Is it ffmpeg error ? or x265 library error ?

    2. should I modify some configuration key value in build level ? or ffmpeg running time level ?

    3. I would like to know why ffmpeg library keep saying like "No start code is found" && "PPS id out of range" [it is occur in only 265 decoding case, not 264.]

  • utvideoenc : Enable support for multiple slices and use them

    14 février 2014, par Jan Ekström
    utvideoenc : Enable support for multiple slices and use them
    

    The official Ut Video decoder only threads with slices, thus until
    now any files encoded by the libavcodec encoder have only been
    decodable with a single thread. The default slice count is now
    set to subsampled_height / 120.

    Also sets slices to 1 for the Ut Video encoder tests to keep them
    green.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavcodec/utvideoenc.c
    • [DBH] tests/fate/utvideo.mak
  • Creating periodic offsets with ffmpeg segment muxer for seamless ffmpeg-concat transitions

    30 janvier 2021, par Soren Wray

    Suppose I begin with a 1 minute video with a framerate output of 24 frames/second and then use ffmpeg's segment muxer to split it into 60 equal parts of 1 second each with the timesptamps reset :

    &#xA;

    ffmpeg -i input.mp4 -map 0 -f segment -segment_time 1 -reset_timestamps 1 -g 24 output_%03d.mp4

    &#xA;

    I then use ffmpeg-concat to string output_000.mp4-output_059.mp4 together into a single video with a periodic 0.5 second dreamy transition effect between each segment : ffmpeg-concat -t dreamy -d 500 -o dreamy.mp4 output_*.mp4

    &#xA;

    Unfortunately, the transition effects introduce a negative 0.5 second offset between the segments, resulting in a video that is 32 seconds in duration. I don't want to deform the audio and video in this manner. I want to use transition effects without changing the duration or creating any other syncing issues. How to best achieve these seamless transitions is the question.

    &#xA;

    One potential solution would be to add an offset to the segments, e.g. 0.25 seconds at the beginning and end of every segment, such that the segment muxer produces 60 segments of 1.5 second duration from a 1 minute video. In this manner, the 0.5 second transition effects should blend seamlessly into the offsets.

    &#xA;

    I don't know where to begin to achieve this potential solution. I've read the official guide, but I can't decipher the relevant filter options for this particular use case. ffmpeg-concat doesn't seem to provide any native options around this problem either.

    &#xA;