Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (22)

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

  • libopenh264enc : Added max_nal_size option

    8 octobre 2015, par Mario Gasparoni
    libopenh264enc : Added max_nal_size option
    

    Also added dynamic slice_mode option, needed for the max_nal_size.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/libopenh264enc.c
  • avformat/matroskaenc : Avoid temporary buffers when reformatting H.2645

    16 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Avoid temporary buffers when reformatting H.2645
    

    Do this by using the new NALUList API. This avoids an allocation
    of a dynamic buffer per packet as well as the (re)allocation
    of the actual buffer as well as copying the data around.

    This improves performance : The time for one call to write_packet
    decreased from 703501 to 357900 decicyles when remuxing a 5min
    14000 kb/s H.264 transport stream.

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

    • [DH] libavformat/matroskaenc.c
  • FFmpeg. Loosing timecode while transcoding

    23 février 2017, par 7sides

    I’ve got an mp4 (h264) file from RTSP webcam with dynamic FPS ( 10).

    I can see that mp4 STTS atom contains right frames durations/deltas when a frame is skipped (due to networking problems for instance).

    So at playing I always have the right total duration for about 30 minutes.

    But when I transcode this file to mpegts format and back to mp4 the total duration becomes approx. 29:10 (seems due to missed frames and normalising of PTS).

    Here are the commands :

    Convert from mp4 to mpegts :

    ffmpeg -copyts -i /script_cache/_1487864096/10.8.0.118_rtsp.camera.1.hall_1487831449.mp4 -c copy -y -bsf:v h264_mp4toannexb -copyts -f mpegts /script_cache/_1487864096/10.8.0.118_rtsp.camera.1.hall_1487831449.ts
    

    Convert from mpegts to mp4 :

    ffmpeg -copyts -i /script_cache/_1487864096/10.8.0.118_rtsp.camera.1.hall_1487831449.ts -c copy -f mp4 result.mp4
    

    So, how can I preserve the source duration/deltas while converting mp4->mpegts->mp4 ?