Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12585)

  • Révision 90990 : icône/icone cf https://core.spip.net/issues/3495

    22 juillet 2015, par brunobergot@gmail.com
  • Issues implementing video Steganography using C# and ffmpeg [closed]

    25 juin 2012, par RAZER

    I'm trying to implement video steganography using c# and ffmpeg.
    The logic is as follows :

    -get bitmap frames from a video using ffmpeg argument
    (" -i d :\video.avi -r 25 d :\images\image-%5d.bmp")

    -hide data within lsb of bitmap data, starting from the first frames.

    -get video from the encode bitmap frames using ffmpeg argument
    (" -r 25 -i d :\images\image-%5d.bmp d :\out.avi")

    -now to decode hidden data, again get bitmap frames from above created video and perform decoding by
    extracting data from lsb of bitmap data.

    But the problem is the last step i cannot get the exact data that was hidden.
    I don't know what's go'in on, can anybody help me with the issue.

  • v4l2 Repeating headers causing issues with FFmpeg

    11 septembre 2019, par AlexVestin

    I’m trying to stream from a raspberry pi using the python library aiortc with some modification to allow use the hardware encoding the rpi provides.

    The issue is if I the use v4l2 control repeat_sequence_header=0, the server is never sent any PPS or SPS at all, and is just sent nal unit types 1 and 5. So this makes the decoder on the server gives this error on every frame :

    failed to decode, skipping package: [Errno 1094995529] Invalid data found when processing input (16: h264)
    non-existing PPS 0 referenced
    decode_slice_header error
    no frame!

    However with repeat_sequence_header enabled the decoder complains on sending the SPS and PPS that the frame_num is resetting with

    Frame num change from 199 to 0
    decode_slice_header error

    So is there any way to tell the decoder that the frame_nums will be repeating, or to tell v4l2 to keep counting the frames up ?