Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (89)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5753)

  • ffmpeg ignores -metadata option when video is encoded

    30 octobre 2018, par Rafael Lima

    I have a video with the following metadata :

    rotate : 90

    I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.

    If I do :
    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
    the output will have removed the metadata.

    But if I do :
    ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
    then I still have the undesired metadata.

    Is there a way to remove metadata while encoding ?

  • ffmpeg ignores -metadata option when video is encoded

    30 octobre 2018, par Rafael Lima

    I have a video with the following metadata :

    rotate : 90

    I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.

    If I do :
    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
    the output will have removed the metadata.

    But if I do :
    ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
    then I still have the undesired metadata.

    Is there a way to remove metadata while encoding ?

  • What are these strange strings in complied FFmpeg binary files ?

    4 septembre 2018, par greagen

    I am learning compilers recently and compile FFmpeg-1.0.10 source downloaded from official website to binary files on macOS 10.13.6. I use command "strings" to display the printable strings in the binaries. But there are some strange strings that do not exit in source files. Some examples of the strings are as following :

    IMAS
    TXTR
    VbuS
    ...
    theora
    vorbis
    'hb7=
    ... {next three examples start with whitespace character}
    (8H8h8
    h8H8(8
    8!8"8
    ...
    $h%h&h
    $X%X&X
    $X%X&X
    ...

    What are those strings ?

    When and where they came from ?

    What are they used for ?

    How can I distinguish these strange strings with strings constants in source code ?