Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (101)

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

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

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

Sur d’autres sites (12956)

  • Combining 2 videos by ffmpeg via c# asp.net

    15 novembre 2014, par Arun Kumar

    I need to combine two video file using ffmpeg.
    Can you help me ? I tried cat command, It won’t works well.

    ProcessStartInfo info1 = new ProcessStartInfo(@"e:\ffmpeg\bin\ffmpeg.exe",
    @"cat e:\cars1.mpg e:\cars2.mpg | ffmpeg -f mpeg -i - -vcodec copy -acodec copy e:\merged.mpg");

    Give me some suggestions.

  • aac_ac3_parser : Drop in-parser downmix functionality

    26 avril 2017, par Vittorio Giovara
    aac_ac3_parser : Drop in-parser downmix functionality
    

    request_channel_layout is a decoder option and it makes no sense
    to have it in a parser.

    This feature was needed in the past when the decoder was allowed
    to reuse the avctx from the demuxer. Nowadays the decoder receives
    only the parameters from it, already containing the real channel
    layout (and the correct request_channel_layout option).

    After initialization the decoder overwrites the channel layout
    with the downmixed one that is actually output, so there is no need
    to preserve this functionality in the parser.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavcodec/aac_ac3_parser.c
  • lavf : do not use the parser duration for video

    13 avril 2014, par Anton Khirnov
    lavf : do not use the parser duration for video
    

    The parser has no way of knowing video duration, and therefore no video
    parsers set it.

    • [DBH] libavformat/utils.c