Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (65)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Having trouble building FFmpeg using GNU make, Makefile:182 : /tests/Makefile : No such file or directory

    24 mai 2022, par Daedalus

    I'm having trouble building FFmpeg as a library to use in a project in vscode C++. I have no experience working with C/C++ libraries and would greatly appreciate any help. I've installed chocolatey and GNU make (GNU Make 4.3) with that, and the source code for FFmpeg. I cannot run make, as it tells me to do in the INSTALL.md file of the source code. I've been using command prompt to run the commands. Here are my errors :

    


    C:\ffmpeg>PowerShell ./configure

C:\ffmpeg>make
Makefile:182: /tests/Makefile: No such file or directory
make: *** No rule to make target '/tests/Makefile'.  Stop.

C:\ffmpeg>make install
Makefile:182: /tests/Makefile: No such file or directory
make: *** No rule to make target '/tests/Makefile'.  Stop.


    


    I've installed FFmpeg from github, and I can't find a working prebuilt library. I've tried different variations of the commands, with PowerShell and directories, but nothing has worked. This is INSTALL.md :

    


    


    Installing FFmpeg

    


      

    1. Type ./configure to create the configuration. A list of configure options is printed by running configure --help.

      


      configure can be launched from a directory different from the FFmpeg sources to build the objects out of tree. To do this, use an
absolute path when launching configure, e.g.
/ffmpegdir/ffmpeg/configure.

      


    2. 


    3. Then type make to build FFmpeg. GNU Make 3.81 or later is required.

      


    4. 


    5. Type make install to install all binaries and libraries you built.

      


    6. 


    


    NOTICE

    


      

    • Non system dependencies (e.g. libx264, libvpx) are disabled by default.
    • 


    


    


    Any help would be greatly appreciated. Thanks in advance.

    


  • Revision 5f138986fc : Exclude inv_txfm dspr2 files from make file when highbd is on Add a guard to ex

    4 août 2015, par Jingning Han

    Changed Paths :
     Modify /vpx_dsp/vpx_dsp.mk



    Exclude inv_txfm dspr2 files from make file when highbd is on

    Add a guard to exclud dspr2 inverse transform files from vpx_dsp
    make file, when high bit-depth is turned on. This fixes the jenkins
    nightly build.

    Change-Id : Ibacd86563af1ec4810c550905b3fa0397baeeafc

  • hw_base_encode : make recon_frames_ref optional

    30 août 2024, par Lynne
    hw_base_encode : make recon_frames_ref optional
    

    Vulkan supports some stupidly odd hardware, that unfortunately,
    most modern GPUs happen to be.
    The DPB images for encoders may be required to be preallocated
    all at once, and rather than be individual frames, be layers of
    a single frame.

    As the hw_base_encode code is written with the thought that either
    the driver or the device itself supports sane image allocation,
    Vulkan does not leave us with this option.

    So, in the case that the hardware does not support individual
    frames to be used as DPBs, make the DBP frames context optional,
    and let the subsystem manage this.

    • [DH] libavcodec/hw_base_encode.c