Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (98)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (11046)

  • How to link libav* libraries of FFmpeg in my own program ?

    20 août 2019, par zuguorui

    I am new to FFmpeg, now I want to use the FFmpeg codec compenet in my own program. I’ve followed the guide on FFmpeg wiki to complie the libraries the FFmpeg and get them done. But when I compile my own program it always tips ld: library not found for -lavutil or something like this.

    Environment:MacOS 10.14.6

    Compile tool : clang++

    steps :

    (1)Install all needed libraries follow the wiki.

    (2)./configuure --prefix=host --enable-shared --disable-static

    (3)make

    (4)make install, after this step, I got compiled files in dictionary host.

    (5)copy the source code in FFmpeg/doc/examples/decode_audio.c to create a new project, and copy includes and dylib files to my project dictionary. The structure of my project is :

    ./
    |----FFmpeg
        |----include
             |----libavcodec
                  |----*headers*
             |----libavformat
                  |----*headers*
             |----libavutil
                  |----*headers*
        |----lib
             |----libavutil.dylib
             |----libavcodec.dylib
             |----libavformat.dylib
    |----main.cpp

    (6)compile the project.

    clang++ *.cpp -L./FFmpeg/lib/ -lavutil -lavformat -lavcodec -I ./FFmpeg/include -o main.out

    But it always fail with tip ld: library not found for -lavutil or something like this. I don’t know why. Do I need to install those libraries in /usr/local dictionary instead of host ? Or I miss some variables when configing or compiling ?

    update:I solved this problem, I copyed the links of dylib files but not dylib itself, which caused this problem. But a new problem rised, when I run the program, it tips dyld: Library not loaded: @executable_path/lib/libavcodec.dylib. Reason: image not loaded.

  • How do I adjust the separation between green and red in an anaglyph video using ffmpeg ?

    21 octobre 2023, par Johnny Quest

    I have been searching like crazy for the ffmpeg filter to use for adjusting the separation between the green and magenta channels when converting 3D sbs to 3D green/red video and can't find any ffmpeg filter to perform this function.

    


    In sample 3D sbs videos converted to 3D green/magenta (using ffmpeg "agmd" filter), the green/red separation of "close" objects is too great and cannot be focused on as one image when using the green/magenta glasses. Images further away in the scene have a lesser separation and look fine.

    


    Example :
ffmpeg -i test_3dsbsl.mp4 -vf "stereo3d=sbsl:agmd" test_3dagmd.mp4

    


    Any one ?

    


    JQ

    


    So who gave the down vote ; why didn't you post your reason for the down-vote ? No posted reason is just malicious and unhelpful.

    


  • Decode a Twitch Stream to raw RGBA data ussing FFMPEG [closed]

    20 septembre 2024, par ZeunO8

    As the title states, I would like to take a Twitch stream, say the one at (https://www.twitch.tv/selectfm) and pass the URI to a formatContext for decoding packets in realtime.

    


    How would I go about getting a URI to a video stream so that I can pass to FFMPEG.

    


    I am using C++ to handle all my FFMPEG related tasks