Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11583)

  • avcodec/mips : Fix a warnning of indentation not reflect the block structure.

    9 septembre 2019, par Shiyou Yin
    avcodec/mips : Fix a warnning of indentation not reflect the block structure.
    

    The indentation of code dose not reflect the if block structure in
    'apply_ltp_mips', and this will generate a warnning when build with
    '-Wall' or '-Wmisleading-indentation'.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/aacdec_mips.c
  • avcodec/mpegvideo : Don't reset AC values of upper-left luma block

    13 juin, par Andreas Rheinhardt
    avcodec/mpegvideo : Don't reset AC values of upper-left luma block
    

    Said block will only be referenced by blocks from the same macroblock,
    which will read the new AC values instead of the reset values
    from this function.

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

    • [DH] libavcodec/mpegvideo.c
  • ffmpeg - remove duplicate frames block (same video sequence twice)

    11 janvier 2018, par Radoslav Kastiel

    Any idea how to remove duplicate video&audio frames blocks (several seconds repeating video sequences having same timestamps and frames corrupt file) from TS file with ffmpeg ?

    I tried :

    1) decimate filter :

    ffmpeg -i input.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB out.mp4
    • does reencoding
    • does not remove several seconds repeated frames block

    2) playing with synchronisation options

    ffmpeg -vsync vfr -frame_drop_threshold 1500 -i in.ts -vcodec copy -acodec copy -y out.ts
    • there is no help with frame_drop_threshold attribude, no sample usage found on internet
    • does not reencode input
    • does not remove several seconds repeated frames block

    Seems ffmpeg helps :

    • just with sequence of same frames
    • not with repeating frames sequences in the stream
    • not with removing (dropping) frames with repeated timestamps