Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (112)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6698)

  • use ffmpeg in a voice recorder project

    8 juillet 2014, par user3789242

    please anyone can help me of how to use ffmpeg to allow the user to choose which format he wants to save the audio ??the audio is a voice recorder using HTML5.I managed to record the voice but don’t know how to use ffmpeg for format conversion since the saved audio is wave and the user should be able to covert it to mp3,pcm or any else format

  • How to use FFmpeg compression methods in our own C project ?

    29 février 2016, par Sir DrinksCoffeeALot

    I’m currently working on compressing video data on one port and sending it to another port where the data will be decompressed. I would like to try LZW compression method. I’m using pretty old and outdated FFmpeg build (only .h, .lib, .dll files). Problem is that i don’t have any headers to include to get access to LZW encoder and decoder.

    Idea is to open video file, split it into frames, compress them using one of the methods and send them to some remote location where they will be decompressed and concencated into video file.

  • Deploying QT project with opencv and ffmpeg dylib error

    9 juillet 2019, par Clarky

    When I build my project using the opencv and ffmpeg dylibs my application crashes upon opining with the error :

    Dyld Error Message :
    Library not loaded :
    /usr/local/Cellar/ffmpeg/4.1.3/lib/libswresample.3.dylib

    Referenced from :
    /Applications/myApp.app/Contents/Frameworks/libavcodec.58.dylib
    Reason : image not found

    I have tried using the install_name_tool to try and change the paths using this :

    install_name_tool -change libavcodec.58.dylib

    @executable_path/../Frameworks/libavcodec.58.dylib

    /Users/me/code/build_output/MyAppQML/myApp.app/Contents/MacOS/myApp

    Although this modified the file I was still getting the same error and crash at run time.

    Is install_name_tool suitable to fix this issue or should I be looking at something else ?

    I’ve used otool on libavcodec.58.dylib which showed that some of the paths where linked to the @executable_path

    @executable_path/../Frameworks/libavcodec.58.dylib (compatibility version 58.0.0, current version 58.35.100)
       /usr/local/Cellar/ffmpeg/4.1.3/lib/libswresample.3.dylib (compatibility version 3.0.0, current version 3.3.100)
       /usr/local/Cellar/ffmpeg/4.1.3/lib/libavutil.56.dylib (compatibility version 56.0.0, current version 56.22.100)
       /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1238.60.2)
       /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0)
       @executable_path/../Frameworks/liblzma.5.dylib (compatibility version 8.0.0, current version 8.4.0)
       @executable_path/../Frameworks/libopencore-amrwb.0.dylib (compatibility version 1.0.0, current version 1.3.0)