Recherche avancée

Médias (91)

Autres articles (65)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (9938)

  • how to make ffmpeg process large files faster ?

    12 octobre 2019, par Hakim Douib

    I am using ffmpeg to view video for dash player. But the videos used are more than 1GB, and the server has
    60 GB of RAM
    Ten cores

    The server takes more than 50 hours to process a video.
    The method I use is by separating each operation thread to make it faster ,
    and the files in the end have size between 2 to 5 GB

    dash params variable

    VP9_DASH_PARAMS="-tile-columns 4 -frame-parallel 1"

    cmd :

    ffmpeg  -i  vid_origenal.mp4 -c:v libx265  -s 1920x1080 -b:v 3000k -keyint_min 150 -g 150 ${VP9_DASH_PARAMS} -an -f webm -dash 1  1080.webm >/dev/null 2>&1 &

    I use this for all qualities

    thanks

  • lavf/webm_dash : fix hardcode in cues_end computation

    1er octobre 2014, par Vignesh Venkatasubramanian
    lavf/webm_dash : fix hardcode in cues_end computation
    

    Fix an incorrect hard code in cues_end computation. Updating the fate
    test reference files related to the fix as well. The earlier computation
    was clearly wrong as the cues_end field was greater than the file size
    itself in some cases.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
    • [DH] tests/ref/fate/webm-dash-manifest
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-audio-streams
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-video-streams
  • webmdashenc : Add minimumUpdatePeriod

    22 avril 2015, par Vignesh Venkatasubramanian
    webmdashenc : Add minimumUpdatePeriod
    

    DASH spec requires the presence of either duration of the period
    or the minimumUpdatePeriod element. This patch adds the
    minimumUpdatePeriod element hardcoded with the value 0 as the
    manifest will never be updated for WebM DASH Live streams. Also
    updating the fate test reference file.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/webmdashenc.c
    • [DH] tests/ref/fate/webm-dash-manifest-live