Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (66)

  • 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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (7874)

  • Encode to h265 with ffmpeg in batch

    20 septembre 2022, par Ricardo

    I have several Movies/Animes in Full HD and encoded in h264 (current market standard), and I need to perform the Encode to h265 of all these files (separated by folder and subfolders) to save space, which is the proper way to execute in batch (.bat file) ; below current code :

    


    for %%f in (*.mkv, *.mp4) do (
    ffmpeg -i "%%a" -c:a copy -c:v libx265 -vtag hvc1 lossless=1 -preset veryslow "Out\%%~na.mkv"
)


    


    In order to have the best compression of the final file and better image quality (which is visually identical to the current h264 file)

    


    Obs1 : I have both animations and movies and series with real people, can the "ffmpeg" configuration be different for each type ?

    


    Obs2 : In most files have multiple audio and video tracks and multiple subtitles, it is necessary that all audio, video and subtitles remain in the final files.

    


  • avcodec/movtextdec : Switch to smaller type

    8 décembre 2021, par Andreas Rheinhardt
    avcodec/movtextdec : Switch to smaller type
    

    The base size of a box refers to the size the box has in a file,
    not in memory ; so size_t is not their natural type. Therefore use
    a plain unsigned which is smaller on 64bit systems and still big
    enough to represent any conceivable base size.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/movtextdec.c
  • avformat/matroskadec : Compactify structure

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Compactify structure
    

    Matroska EBML IDs can be only four bytes long maximally, so it is
    natural to use uint32_t for them. By doing this and rearranging the
    elements of the MatroskaLevel1Element structure, one can reduce the size
    of said structure.

    Notice that this field is not read via the generic reading process for
    EBML_UINT, so one is not forced to use an uint64_t for it.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c