Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (103)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (15757)

  • av_dump_format() : increase indentation for chapter metadata

    27 janvier 2021, par Anton Khirnov
    av_dump_format() : increase indentation for chapter metadata
    

    It should be at a deeper level than the chapter it belongs to.

    • [DH] libavformat/dump.c
  • lavf/mov : improve `tref/chap` chapter handling

    8 janvier 2016, par Rodger Combs
    lavf/mov : improve `tref/chap` chapter handling
    

    3 parts :
    - Supports multiple chapter streams
    - Exports regular text chapter streams as opaque data. This prevents consumers
    from showing chapters as if they were regular subtitle streams.
    - Exports video chapter streams as thumbnails, and provides the first one as
    an attached_pic.

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Use ffmpeg to cut out the first chapter

    7 janvier 2017, par UnR34L

    I’m trying to remove the first chapter of a TV show rip. The idea is to have something similar to netflix, where the first episode will show the intro then the consecutive episodes don’t.

    I’ve been getting the chapter time with ffprobe then doing it manually with this

    for %%A IN (*.mp4) DO ffmpeg -ss <chaptertime> -i "%%A" -vcodec copy -acodec copy "tmp.mp4" &amp;&amp; DEL "%%A" &amp;&amp; RENAME "tmp.mp4" "%%A"
    </chaptertime>

    How do I pass the first chapter time code value so ffmepg knows where to seek to ?

    Also hoping to use the same the same value to offset the subtitles so they align after the cut.

    Note : The machine I’ve doing the cutting on is windows but I can use my FreeBSD server if that’s easier.