Recherche avancée

Médias (91)

Autres articles (86)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (10920)

  • Hardware encode vp9 on Windows Nvida GPU using ffmpeg

    27 décembre 2023, par Todilo

    I am trying to understand if I can hardware encode VP9 on a windows machine with consumer grade GPU.

    


    Supported codec list (ffmpeg -codecs)
gives me :

    


     DEV.L. vp9                  Google VP9 (decoders: vp9 libvpx-vp9 vp9_cuvid vp9_qsv ) (encoders: libvpx-vp9 vp9_qsv )


    


    And I try to run command

    


    ffmpeg -hwaccel cuda  -an -i file_example_MP4_640_3MG.mp4 -c:v libvpx-vp9 -b:v 1M output-hardware-libvpx-vp9.webm 


    


    but I dont see any performance difference between toggling on the -hwaccel cuda
flag on/off

    


    What am I missing ? I want to do fast realtime encoding of a video stream to a webrtc compatible format and VP9 seem to be the most supported format.

    


  • Using FFmpeg AutoGen save to bitmap works on Windows but not on Linux

    5 décembre 2024, par Chris

    I'm using FFmpeg.AutoGen to decrypt video and save the frames as bitmaps. Code is using dotnet core and I'd like to get it working for both Windows and Linux.

    


    The code is similar to the example provided : https://github.com/Ruslan-B/FFmpeg.AutoGen/blob/db9bcd4b9dfad5d117ffd71fe1a2d073e96a3520/FFmpeg.AutoGen.Example/Program.cs

    


    AVFrame convertedFrame = this.converter.Convert(frame);
Bitmap image = new Bitmap(convertedFrame.width, convertedFrame.height, convertedFrame.linesize[0], PixelFormat.Format24bppRgb, (IntPtr)convertedFrame.data[0]);


    


    When saving the image using :

    


    image.Save($"returned-image-{DateTime.Now.Ticks}.png", ImageFormat.Bmp);


    


    The image looks fine on Windows, but is corrupted in Linux.

    


  • avformat : add windows.h to SChannel SSP TLS code

    25 novembre 2015, par Kevin Mitchell
    avformat : add windows.h to SChannel SSP TLS code
    

    This fixes building on cygwin
    Fixes ticket #5036

    • [DH] libavformat/tls_schannel.c