Recherche avancée

Médias (91)

Autres articles (80)

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

  • avcodec/motion_est : Reset scene_change score, MB variance stats

    19 mars, par Andreas Rheinhardt
    avcodec/motion_est : Reset scene_change score, MB variance stats
    

    Reset them in ff_me_init_pic(). It is the appropriate place for it
    and allows to remove resetting code from multiple places
    (e.g. mpegvideo_enc.c resetted it in two different places
    (one for the main slice context, one for all the others)).

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

    • [DH] libavcodec/motion_est.c
    • [DH] libavcodec/mpegvideo_enc.c
    • [DH] libavcodec/snowenc.c
  • lavf : vvc_probe : lower probe score for invalid SPS/PPS/IRAP order to avoid misdetecti...

    11 mai, par xiongweixiao
    lavf : vvc_probe : lower probe score for invalid SPS/PPS/IRAP order to avoid misdetection of mp3 as VVC
    

    The current vvc_probe function checks for SPS, PPS, and IRAP NAL units but does not enforce their detection order. This can lead to false positives when PPS or IRAP appear before SPS, causing malformed or non-compliant bitstreams to be incorrectly identified as valid VVC streams.

    This commit modifies the logic to use boolean flags and enforces the correct detection sequence : SPS must be detected before PPS, and PPS before IRAP. This ensures more accurate probing and prevents invalid bitstreams from being misidentified.

    For streams with wrong ordering a lower score is returned

    This change addresses issues reported in :
    - https://trac.ffmpeg.org/ticket/11496
    - https://trac.ffmpeg.org/ticket/11087

    Signed-off-by : xiongweixiao <xiongweixiaoxxw@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/vvcdec.c
  • Range selector for Video trimming

    28 février 2019, par VoidMain

    I am working on a project in which I have to trim a video. But first the user needs to select the video for trimming I have done a little digging around and have failed to find a suitable library. I need to implement just the UI that would let the user select the starting and ending point of the trim.

    (I need just the UI the data will be taken from that UI will be used in trimming the video using FFmpeg-android which is working properly)

    A library similar to this iOS layout would do the trick.

    https://drive.google.com/file/d/15FqIX_Sh1TqBrr2cZdkOka0pCMZ0BcNq/view

    Please, do let me know if you have any ideas ? or a better solution for it.

    Any help would be appreciated.
    Thanks