Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (104)

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

  • examples/avio_reading : remove stray empty line

    2 février 2014, par Stefano Sabatini
    examples/avio_reading : remove stray empty line
    
    • [DH] doc/examples/avio_reading.c
  • Find if video file has audio present in it

    29 mars 2017, par Kartos

    I’m trying to figure out if a video has audio present in it so as to extract the mp3 using ffmpeg. When the video contains no audio channels, ffmpeg creates an empty mp3 file which I’m using to figure out if audio was present in the video in the first place. I’m sure there is a better way to identify if audio is present in a video. Will avprobe help with this ? Can anyone point me to a resource or probably a solution ?

    Edit : Surprisingly, the same command on my server running the latest build of ffprobe doesn’t run. It throws an error saying

    Unrecognized option ’select_stream’

    Failed to set value ’a’ for option ’select_stream’

    Any ideas how to rectify this out ?

  • find xargs mac change filename extension

    27 janvier 2014, par brakertech

    I am trying to convert a directory full of mp3's (with spaces in file names) to m4a.

    To convert a single file (this works) :

    ffmpeg  -i Traffic.mp3 -c:a libfaac -vn Traffic.m4a

    The command that is failing (on OS X Mavericks) :

    find . -name \*.mp3 -print0 | xargs -0 ffmpeg -i {}  -c:a libfaac -vn {}.m4a