Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (68)

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

  • ffmpeg will not load libraries

    12 août 2016, par user6686891

    when I try to use ffmpeg this is the result :

    dyld: Library not loaded: /opt/local/lib/libx264.142.dylib
     Referenced from: /opt/local/bin/ffmpeg
     Reason: image not found
    Trace/BPT trap: 5

    I downloaded ffmpeg with homebrew on OSX 10.9 and it says that the most up-to-date version (3.1) is already installed.

    I found a similar issue on github, but the suggestion of uninstalling ffmpeg and rebuilding from source throws up the following error : Error: SHA256 mismatch

    How do I get ffmpeg to work ?

  • fftools/ffmpeg : store stream media type in OutputStream

    11 avril 2023, par Anton Khirnov
    fftools/ffmpeg : store stream media type in OutputStream
    

    Reduces access to a deeply nested muxer property
    OutputStream.st->codecpar->codec_type for this fundamental and immutable
    stream property.

    Besides making the code shorter, this will allow making the AVStream
    (OutputStream.st) private to the muxer in the future.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_mux.c
    • [DH] fftools/ffmpeg_mux_init.c
  • ffmpeg : How to assign an empty soundtrack to a video ?

    26 septembre 2013, par Jim Miller

    I'm using ffmpeg to build a short hunk of video from a machine-generated png. This is working, but the video now needs to have a soundtrack (an [audio] field) for some of the other things I'm doing with it. I don't actually want any sound in the video, so : is there a way to get ffmpeg to simply set up an empty soundtrack property in the video, perhaps as part of the call that creates the video ? I guess I could make an n-second long silent mp3 and bash it in, but is there a simpler / more direct way ? Thanks !