Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5679)

  • What's the relationship between AVPacket in FFMpeg and H.264 NAL Uint ?

    8 juin 2016, par Ello

    I use FFMpeg’s api to encode images to H.264 stream, the code is like this encode code. When I called the function avcodec_encode_video2 I got one AVPacket’s data, then I saved it to file. I use several images to get several files for test.
    Based on the startcode 00 00 00 01 or 00 00 01, I found that the 1st and 2nd files’ data both contain several H.264 NAL Uints. But start from the third file, I can’t found the startcode. Like followed image.
    Picture

    I feel confused. Base on the FFMpeg’s code I think one AVPacket’s data should contain at least one NAL Uint, but the result is unexpected. Is that means one NAL Uint may be divided to two AVPackets’ data ? What’s the relationship between AVPacket and H.264 NAL Uint ?

  • What's the relationship between AVPacket in FFMpeg and H.264 NAL Uint ?

    8 juin 2016, par Ello

    I use FFMpeg’s api to encode images to H.264 stream, the code is like this encode code. When I called the function avcodec_encode_video2 I got one AVPacket’s data, then I saved it to file. I use several images to get several files for test.
    Based on the startcode 00 00 00 01 or 00 00 01, I found that the 1st and 2nd files’ data both contain several H.264 NAL Uints. But start from the third file, I can’t found the startcode. Like followed image.
    Picture

    I feel confused. Base on the FFMpeg’s code I think one AVPacket’s data should contain at least one NAL Uint, but the result is unexpected. Is that means one NAL Uint may be divided to two AVPackets’ data ? What’s the relationship between AVPacket and H.264 NAL Uint ?

  • Decoding HECV with FFMpeg. Multiple slices I frame issue

    8 mars 2023, par lucienii

    I'm facing issue decoding camera with HEVC codec and RTSP transport (live555). I'm trying to decode frames with ffmpeg (avcodec_send_packet/avcodec_receive_frame) but it decodes only the first 1/3 of the picture and the others 2/3 stay green rectangle. Each frame is sent divided into 3 parts (slices) :

    


      

    • I-Frame is I-B-I
    • 


    • P-Frame is P-P-P
    • 


    


    I suppose FFmpeg is able to deal with this because it agrees with HEVC specification.
Have I to "concatenate" 3 slices before send them to ffmpeg ?
Could you help me please ?

    


    I try to send all slices before receive them but this doesn't work.