Recherche avancée

Médias (91)

Autres articles (2)

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

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3012)

  • When using MoviePy to resize a video how do I know what bitrate to use to maintain quality when writing the new video to disk

    4 juillet 2016, par Michael

    Expanding on this question How To Resize a Video Clip Python about using MoviePy to resize a video.

    When it comes time to write the resized video to disk
    How do I select a bitrate value so there is as little loss of quality as possible ?

    The original video is 4.8M on disk and is .mp4

    Bit rate set when writing to disk

       clip_resized.write_videofile(ResizedClip,bitrate="5000k")

    Gives a file of 8.3MB in size

    No bit rate set

       clip_resized.write_videofile(ResizedClip)

    Gives a file of 3.3MB

  • how to use ffmpeg library using android studio on ubuntu

    6 mars 2016, par ultimate

    I know there are lots of questions asked for compiling and using FFMPEG library with android studio, but i have not got the solution.

    I am able to compile FFMPEG library on ubuntu and have idea to use compiled library on eclipse. I don’t know the what would be the project structure with FFMPEG library. Can anyone suggest me how it can be configured on android studio with gradle ?

  • Visual Studio can't detect FFmpeg

    19 avril 2023, par Jonathan

    I'm using Visual Studio Community 2022 for a Python 3 project that involves using FFmpeg. However, when I try to run my code, I get the following error message :

    


    RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work


    


    I have FFmpeg installed and added to my PATH, but it still doesn't seem to be working. Here are the steps I've taken so far to try to fix this :

    


      

    1. I tried installing the FFmpeg pip package, but it didn't change anything.

      


    2. 


    3. I searched for solutions on sites like learn.microsoft.com and
stackoverflow.com, but I haven't been able to find anything that works for me. This question also didn't answer my question

      


    4. 


    5. I also asked for help in Visual Studio Code, but I wasn't able to find a solution there either.

      


    6. 


    


    I would appreciate any guidance on how to fix this issue. Thank you !