Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (99)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8998)

  • Making Sound To High To Hear Or Undetecable with Sox/FFMPEG

    28 octobre 2016, par Devin Dixon

    I want to make a sound that is too high to be detected by the human ear. From my understanding, humans can hear sounds between 20hz and 44000hz.

    With sox, I am making a sound that is 50000hz. The problem is I can still hear it. The command I am using is this :

    sox -n -r 50000 output.wav rate -L -s 50050 synth 3 sine

    Either I have super good hearing or I am doing something wrong. How can I make this sound undetectable with SOX of FFMPEG ?

  • make/cmake error : relocation R_X86_64_32 against `ff_a64_muxer' can not be used when making a shared object

    21 juin 2017, par NotCras

    Here’s what’s going on. I’m trying to set up OpenSceneGraph, however I run into the following error during the make process (spaces added for easier reading) :

    /usr/bin/ld: /usr/local/lib/libavformat.a(allformats.o): relocation R_X86_64_32 against `ff_a64_muxer' can not be used when making a shared object; recompile with -fPIC

    /usr/local/lib/libavformat.a: error adding symbols: Bad value

    collect2: error: ld returned 1 exit status

    src/osgPlugins/ffmpeg/CMakeFiles/osgdb_ffmpeg.dir/build.make:291: recipe for target 'lib/osgPlugins-3.4.0/osgdb_ffmpeg.so' failed

    make[2]: *** [lib/osgPlugins-3.4.0/osgdb_ffmpeg.so] Error 1

    CMakeFiles/Makefile2:6663: recipe for target

    'src/osgPlugins/ffmpeg/CMakeFiles/osgdb_ffmpeg.dir/all' failed

    make[1]: *** [src/osgPlugins/ffmpeg/CMakeFiles/osgdb_ffmpeg.dir/all] Error 2

    make[1]: *** Waiting for unfinished jobs....

    This error does not stop the cmake process. A little later (error above occurs at 39%, process fails at 46%), I get this error :

    Makefile:127: recipe for target 'all' failed

    make: *** [all] Error 2

    Then the process stops.

    I’ve looked at some other solutions, but they didn’t have what I needed (here and here). I’ve run cmake with the -fPIC flag and that didn’t solve anything.

    I found a potential solution here but I don’t know how to implement "recompile your FFmpeg/libavcodec/libavformat with pic enabled". Can anyone talk me through it or give me a good resource ? I’ve never done it before and I don’t want to mess up my computer.

    Any help would be much appreciated. Thanks in advance !

  • Cutting FLAC using ffmpeg does not change timestamps accordingly

    21 mars 2021, par George Tian

    I am using the following command to cut a FLAC file :

    


    ffmpeg -i input.flac -ss 10s -t 10s -c copy output.flac

    


    output.flac contains the correct duration of audio. However, all media players show its duration as the duration of input.flac.

    


    The only other mention of this issue is an open ticket from 5 years ago.

    


    How do I correct the timestamp of the output file ?