Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (31)

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • Creating farms of unique websites

    13 April 2011, by

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

On other websites (8251)

  • avfilter/avf_showspectrum: do not let multiple threads to write to same part of memory

    16 August 2016, by Paul B Mahol
    avfilter/avf_showspectrum: do not let multiple threads to write to same part of memory
    
    • [DH] libavfilter/avf_showspectrum.c
  • libavcodec/qsv.c: Linux-only code part has been moved to separate function in order...

    6 July 2015, by Ivan Uskov
    libavcodec/qsv.c: Linux-only code part has been moved to separate function in order to avoid the "ISO C90 forbids mixed declarations and code" compiler warning.
    

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/qsv.c
  • FFMPEG merge two files cause the video to freeze at the end of the first part

    17 January 2015, by Anas

    I am using FFMPEG to cut and merge video file, these are my commands:
    //split the video to three parts

    ffmpeg -i "input.mkv" -ss 00:00:00 -to 00:04:00 -c copy -map 0 -y out0.mkv
    ffmpeg -i "input.mkv" -ss 00:05:00 -to 00:22:00 -c copy -map 0 -y out1.mkv
    ffmpeg -i "input.mkv" -ss 00:23:00  -c copy -map 0 -y out2.mkv

    //merge these parts in one video again

    ffmpeg  -f concat -i mylist.txt -c copy  -y output.mkv

    //mylist.txt contains:

    file out0.mkv
    file out1.mkv
    file out2.mkv

    And everything works fine, except that the new merged video freeze for 5 seconds at the end of the first merged part, in the above example at sec 04:00 the screen pauses for 5 seconds and then the video continue.

    Do you know why this is happening? is there a work around please help.