Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (112)

  • 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 ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

Sur d’autres sites (12874)

  • Unable to build ; undefined symbols for architecture x86_64 :

    30 août 2021, par switt

    In the process of trying to create an RTSP screen streaming server, I tried looking at CocoaSplit for an example.

    



    Problem is, I can't get it to compile.

    



    I have FFMpeg installed on my computer using Homebrew following FFMpeg's guide on https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX .

    



    But on compilation, Xcode is throwing out errors such as

    



    Undefined symbols for architecture x86_64:

"_cmnMemAlloc", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCheck", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCopy", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemFree", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemSet", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)


    



    and so on.

    



    The header search paths field in project settings has the directory of /usr/local/include in it.

    



    What seems to be the problem here ?

    


  • [h264_nvenc : InitializeEncoder failed:supported only with separate color plane on this architecture

    4 janvier 2021, par gpuguy

    I am learning ffmpeg for the first time. What I want is to see how it performs on CPU and on GPU when it comes to transcoding.

    


    My machine is having a GT640 GPU card (GT640 is a Kepler card) and I am running a windows 7 , 64bit.
I issue the following command :

    


    ffmpeg -i lec_2.mp4 -c:v h264_nvenc -profile high444p -pixel_format yuv444p -preset default output.mp4


    


    But I am getting following errors :

    


    [h264_nvenc @ 0000000000363a80] The selected preset is deprecated. Use p1 to p7
+ -tune or fast/medium/slow.
[h264_nvenc @ 0000000000363a80] InitializeEncoder failed: invalid param (8): 444
 is supported only with separate color plane on this architecture.
Error initializing output stream 0:0 -- Error while opening encoder for output s
tream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
[aac @ 0000000000365980] Qavg: 18941.322
[aac @ 0000000000365980] 2 frames left in the queue on closing
Conversion failed!


    


    My questions are :

    


      

    1. From this output can I assume that nvenc is supported on my card since it does not complaint of no nvenc supported GPU ?

      


    2. 


    3. How should the above command be modified so as to make it work correctly

      


    4. 


    


  • ffmpeg - avformat_alloc_context error in linker - ld : symbol(s) not found for architecture x86_64 - building on Mac [duplicate]

    29 septembre 2020, par QRrabbit

    I'm writing my first program - attempt at avformat libraries inside my C++ code. Linker errors on this line :

    


        AVFormatContext* av_format_ctx = avformat_alloc_context();


    


    The error appears as such:
Undefined symbols for architecture x86_64:
  "_avformat_alloc_context", referenced from:
      load_frame(char const*, int*, int*, unsigned char**) in load_frame.cpp.o
  "_avformat_open_input", referenced from:
      load_frame(char const*, int*, int*, unsigned char**) in load_frame.cpp.o
ld: symbol(s) not found for architecture x86_64


    


    Almost feels like I have some conflicting libraries, but I don't know how to isolate the right one. Any help is greatly appreciated.