Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (94)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (15664)

  • get, using ffmpeg, the RTSP response code

    1er août 2023, par João Victor

    It's possible get using the ffmpeg the RTSP response code ?

    


    I need collect the information from RTSP header, similar to the HTTP header

    


    using 'curl' i dont think it would be possible.

    


    I was able to validate the operation of the link only with screen shots, but I believe this is not the best way to do this.

    


  • lavf/hls : replace the same code logic with ensure_playlist()

    21 juillet 2019, par vacingfang
    lavf/hls : replace the same code logic with ensure_playlist()
    

    Replace the same code logic with ensure_playlist(), it's will
    help reusable blocks of code.

    Reviewed-by : Jun Zhao <barryjzhao@tencent.com>
    Signed-off-by : vacingfang <vacingfang@tencent.com>

    • [DH] libavformat/hls.c
  • can i use windows api function on ffmpeg code ?

    6 septembre 2020, par sooyongchoi

    I'm trying recording video from camera and receive timestamp when frame received.&#xA;I want to extracting timestamp each frame on Windows.&#xA;And I'm trying use this ffmpeg commandline.&#xA;Sync files timestamp with ffmpeg

    &#xA;

    ffmpeg -f dshow -rtbufsize 1500M -video_size 1920x1080 -use_wallclock_as_timestamps 1 -copyts -r 60 -i video="0819-INOGENI 4K2USB3" -r 60 -vf setpts=PTS-STARTPTS -q 4 video4567.avi -c copy -f mkvtimestamp_v2 timings4567.txt

    &#xA;

    but I want to timestamp based on GetSystemTimePreciseAsFileTime function, not unix epoch time for much better sensitive timer.

    &#xA;

    So, I'm trying modifying to use GetSystemTimePreciseAsFileTime function mkvtimestamp_v2 code.&#xA;But it's error when make install processing.&#xA;like this : libavformat.a(mkvtimestamp_v2.o) : error LNK2019 : unresolved external symbol _GetSystemTimePreciseAsFileTime referenced in function _write_packet

    &#xA;

    It seems like no link win32 api from ffmpeg code.

    &#xA;

    Is there any way for linking win32 api for ffmpeg code ?

    &#xA;

    thanks :)

    &#xA;