Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (52)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (9373)

  • avutil/film_grain_params : remove unused variables

    24 mars 2024, par Leo Izen
    avutil/film_grain_params : remove unused variables
    

    These variables are never read from, so they trigger -Wunused-variables

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavutil/film_grain_params.c
  • Softwares for adding real time text to a video [on hold]

    30 juillet 2013, par user763410

    I am trying to add real time text (like weather information, stock quotes) to a video and broadcast it. My videos are going to be 2 hours long. I have been searching for decent softwares which can do the work for me. FFmpeg can do overlays only if text to be added is available fully before running ffmpeg code, so its not real time. I have not been able to able to get gstreamer to work on my hardware.

    So, My question is :
    Please suggest some softwares which can add (text)data to a video in real time.
    Please don't post comparisons as that will trigger moderator's anger ! I don't want to start a flame war. Purpose of the question is to make a list. Btw, this should work from command line rather than a GUI.

    (Ps : If the question is closed because of being "not cnonstructive, please answer it on my google docs page here.
    http://goo.gl/14dR2H)

    Thanks very much in advance.

  • Fetching MacroBlock information in FFmpeg

    27 octobre 2019, par Vencat

    I’ve a .mp4 file which contain h.264 video and AAC audio. I wants to extract MacroBlock and motion vector information of each frame while decoding. Please find my below Pseudocode.

    avformat_open_input(file_name) //opening file
    avcodec_open2(pCodecContext, pCodec, NULL) // opening decoder
    while (response >= 0) // reading each frame
       {
           response = avcodec_receive_frame(pCodecContext, pFrame);
           if (response == AVERROR(EAGAIN) || response == AVERROR_EOF || response &lt; 0) {
               break;
           }
           // extract macroblock of pFrame here
           av_frame_unref(pFrame);
       }

    I have seen in other post mentioned that we can get MB information through MpegEncContext structure, but i’m confused were and how to instantiate object of that structure, how the MB data of the structure gets updated for each frame.?

    Ultimately, I wants to compare macroblock from one frame to other frame using SAD (sum of absolute difference) and trigger alerts if there is any distortion in macroblock level.

    I would really appreciate if anyone help on this.