Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (51)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (6870)

  • How do you use ffmpeg npm package with svelte ?

    9 août 2021, par Vellu013

    I want to use ffmpeg with svelte but I don't know how, I tried adding it to package.json but it didn't work (Running linux)

    


  • How to use libx265 (H265) in ffmpeg-python package ?

    14 juillet 2021, par kup

    How to use libx265 (H265) in ffmpeg-python package ?
I tried using :

    


    (
    ffmpeg
    .input('0.mp4')
    .filter('fps', fps=25, round='up')
    .output('out.mkv', format='h265')
    .run()
)


    


    but it is throwing error : format is not recognized.

    


    but this works :

    


    (
    ffmpeg
    .input('0.mp4')
    .filter('fps', fps=25, round='up')
    .output('out.mkv', format='h264')
    .run()
)


    


  • Unable to convert dual fisheye image to equirectangular image using ffmpeg package

    10 juillet 2021, par Soumyarian

    I am trying to convert dual fisheye image captured in an insta360 camera to equirectangular format using the ffmpeg package but I am unable to get the correct result. I used the following code,

    


    ffmpeg -i input.jpg -vf v360=dfisheye:equirect:ih_fov=360:iv_fov=360 output.jpg


    


    the input image,input_image

    


    the output image, output_image

    


    thank you in advance.