Recherche avancée

Médias (91)

Autres articles (79)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ffv1enc_vulkan : support default range coder tables

    19 janvier, par Lynne
    ffv1enc_vulkan : support default range coder tables
    

    This adds support for default range coder tables, rather than
    only custom ones. Its two lines, as the same code can be used
    for both thanks to ffv1enc.c setting f->state_transition properly.

    • [DH] libavcodec/ffv1enc_vulkan.c
  • avformat/dashdec : check the root url length

    17 août 2020, par Steven Liu
    avformat/dashdec : check the root url length
    

    if the length of the root url is 0, unnecessary process the root_url

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : liuqi05 <liuqi05@kuaishou.com>

    • [DH] libavformat/dashdec.c
  • How to use ffmpeg.exe to produce a video with exact length for time from image sequence in C# ?

    15 octobre 2020, par user2186102

    We try to use ffmpeg.exe to make a video from image sequence in C#. However, we can't produce a video which has a predict length for time. For example, we want to produce a video whose length of time is one hour ; actually, the length of time is only 47 miniutes.

    &#xA;&#xA;

    According our understanding, the function, WriteVideoFrame(Bitmap frame, TimeSpan timestamp) of AForge.Video.FFMPEG, can solve this problem. It is because each input frame is associated with a timestamp.

    &#xA;&#xA;

    In ffmpeg.exe, however, we now can only use frame to as input of ffmpeg.exe.

    &#xA;&#xA;

    Who can show me how to write the command or parameters to input each image and the associated timestamp, the same to WriteVideoFrame(Bitmap frame, TimeSpan timestamp).

    &#xA;