Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (82)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6300)

  • Extract motion vectors from x265 (HVEC) encoded video with ffmepg/libavcodec ?

    16 novembre 2017, par John Allard

    I know that one can extract the motion vectors from an h264 encoded via by first setting the flag

    av_dict_set(&opts, "flags2", "+export_mvs", 0);

    then you can query the side-data for the motion vectors by doing this

    sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);

    When I looked online to see if you can do something similar with HVEC encoded videos, I wasn’t able to find any information. All I found was this by the definition of "AV_FRAME_DATA_MOTION_VECTORS"

    Motion vectors exported by some codecs (on demand through the
    export_mvs flag set in the libavcodec AVCodecContext flags2 option).

    The data is the AVMotionVector struct defined in
    libavutil/motion_vector.h.

    but there was no information on exactly which codecs export this motion vector information. How would I go about finding this out ?

  • hwcontext_vulkan : fix make checkheaders fail

    30 mai 2020, par Jun Zhao
    hwcontext_vulkan : fix make checkheaders fail
    

    make checkheaders will get error as follow :
    CC libavutil/hwcontext_vulkan.h.o
    In file included from libavutil/hwcontext_vulkan.h.c:1 :
    ./libavutil/hwcontext_vulkan.h:130:23 : error : ‘AV_NUM_DATA_POINTERS’ undeclared here (not in a function)
    130 | void *alloc_pnext[AV_NUM_DATA_POINTERS] ;
    | ^ 
    ./libavutil/hwcontext_vulkan.h:199:43 : warning : ‘enum AVPixelFormat’ declared inside parameter list will not be visible outside of this definition or declaration

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

    • [DH] libavutil/hwcontext_vulkan.h
  • Output video segments via a pipe using FFmpeg

    6 janvier 2019, par Joey Morani

    My Node.js app uses FFmpeg to capture video of a DirectShow device and then output segments for live streaming (HLS). At the moment I’m outputting the segments to files, however if I could output them via a pipe it would allow me to efficiently send the segment via a websocket instead of hosting a HTTP server.

    I’ve tried using this command :

    ffmpeg -y -f dshow -i video=FFsource:audio=Stereo Mix (Realtek High
    Definition Audio) -vcodec libvpx -acodec libvorbis -threads 0 -b:v
    3300k -cpu-used 5 -keyint_min 150 -g 150 -map 0 -flags:v
    +global_header -f segment -

    However it gives the error "Could not write header for output file #0 (incorrect codec parameters ?) : Muxer not found". This commands works for outputting to files (by replacing ’-’ with ’seg_%03d.webm’).

    Does FFmpeg not support pipes for segmented video, or is there something wrong with the command ? Thanks.