Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (107)

  • 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

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

Sur d’autres sites (9901)

  • fftools/ffmpeg_enc : move set_encoder_id() to ffmpeg_mux_init

    10 septembre 2024, par Anton Khirnov
    fftools/ffmpeg_enc : move set_encoder_id() to ffmpeg_mux_init
    

    This code uses no encoder properties or state besides its name, and is
    mostly muxer logic, and thus belongs more properly into the muxer.

    The results of several test change due to different metadata tag order
    (the "encoder" tag is now set first).

    • [DH] fftools/ffmpeg_enc.c
    • [DH] fftools/ffmpeg_mux_init.c
    • [DH] tests/ref/fate/ffprobe_compact
    • [DH] tests/ref/fate/ffprobe_csv
    • [DH] tests/ref/fate/ffprobe_default
    • [DH] tests/ref/fate/ffprobe_flat
    • [DH] tests/ref/fate/ffprobe_ini
    • [DH] tests/ref/fate/ffprobe_json
    • [DH] tests/ref/fate/ffprobe_xml
    • [DH] tests/ref/fate/ffprobe_xsd
    • [DH] tests/ref/fate/matroska-encoding-delay
    • [DH] tests/ref/fate/matroska-mastering-display-metadata
    • [DH] tests/ref/fate/rgb24-mkv
  • avcodec/mpegvideo_dec : Move setting dct_unquant funcs to h263dec.c

    14 juin 2024, par Andreas Rheinhardt
    avcodec/mpegvideo_dec : Move setting dct_unquant funcs to h263dec.c
    

    It is a better place for it ; no non-h263-based decoder needs
    these functions any more (both H.261 and the error resilience
    code recently stopped doing so).

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

    • [DH] libavcodec/h263dec.c
    • [DH] libavcodec/mpegvideo_dec.c
  • ffmpeg - data is being "removed" while h264 is being processed by ffmpeg

    21 mai 2024, par Laki

    I got a file which is created based on messages coming from streaming, all of the "messages" are ending with b'h264\x00'&#xA;I got a need to

    &#xA;

      &#xA;
    • load the data into ffmpeg
    • &#xA;

    • perform some processing of the data
    • &#xA;

    • re-attach the data to same "messages"
    • &#xA;

    &#xA;

    Data is loaded with ffmpeg and saved with ffmpeg - however - ffmpeg removes "part" of the data&#xA;I have simplified the process and currently I am only loading and saving the data, without any processing, but still - part of the data is being removed

    &#xA;

    I have used several commands - but always, part of my data is being removed

    &#xA;

    ffmpeg -i sthg3.h264  -c copy st3.h264&#xA;ffmpeg  -err_detect ignore_err -i sthg3.h264  -c copy st3.h264&#xA;ffmpeg -fflags &#x2B;genpts -i sthg3.h264 -c copy st3.h264 &#xA;

    &#xA;

    I have created the script for calculating that

    &#xA;

    file_out = &#x27;sthg3.h264&#x27;&#xA;def split_file(input_file,chunki):&#xA;    output_files = []&#xA;    with open(input_file, &#x27;rb&#x27;) as f:&#xA;        file_number = 0&#xA;        while True:&#xA;            chunk = f.read(504096)  # Read a chunk of data&#xA;            if not chunk:  # End of file&#xA;                break&#xA;            index = chunk.find(chunki)  # Find the delimiter&#xA;            while index != -1:&#xA;                chunk = chunk[index&#x2B;len(chunki):]&#xA;                file_number &#x2B;= 1&#xA;                index = chunk.find(chunki)  # Find the next delimiter&#xA;    return file_number&#xA;&#xA;chunki = b&#x27;h264\x00&#x27;&#xA;print(split_file(file_out,chunki))&#xA;chunki = b&#x27;\x00\x01\x00&#x27;&#xA;print(split_file(file_out,chunki))&#xA;    &#xA;chunki = b&#x27;h264\x00&#x27;&#xA;#chunki = b&#x27;\x00\x00\xdc\x9e&#x27;&#xA;print(split_file(&#x27;st3.h264&#x27;,chunki))&#xA;chunki = b&#x27;\x00\x01\x00&#x27;&#xA;print(split_file(&#x27;st3.h264&#x27;,chunki))&#xA;

    &#xA;

    and here is the question, how to push data through ffmpeg to avoid removing data, or replace it with something that would not be removed ?

    &#xA;