Recherche avancée

Médias (91)

Autres articles (89)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (10560)

  • Instagram API video publishing [closed]

    22 mai 2023, par Bergutov Ruslan

    I'm trying to publish video to instagram and it always gives me error

    


    error code 2207026, message "The video file you selected is in a format that we don't support." and there is also note about aspect_ratio

    


    But the point is that previously i downloaded this video from instagram and it has compatible aspect ratio following specs

    


    video that i'm trying to upload

    


    I've tried couple configs for ffmpeg to prepare video but in my case it didn't get job done

    


  • Pushing data while downloading to ffmpeg

    5 avril 2019, par Nguyễn Thành Đạt

    I have try to relivestream video to facebook with source from youtube.

    I use the ytdl to download video from youtube.
    I want to during the video download process, i will livestream

    When i run my source in blow by nodejs then the error appears :

    var url = 'https://www.youtube.com/watch?v=CTL_5dqDOyc';
    var ffmpeg = spawn('ffmpeg', ['-re', '-i', 'pipe:0', '-i', 'logo.png',' acodec', 'libmp3lame',  '-ar', '44100', '-b:a', '128k', '-profile:v', 'baseline', '-s', '854x480', '-bufsize', '6000k', '-vcodec', 'libx264', '-preset', 'veryfast', '-g', '30', '-r', '30', '-f', 'flv', 'rpmt link']);
    ytdl(url).pipe(ffmpeg.stdin);
  • How can I render a video in real time with custom parameters ?

    18 décembre 2024, par Joaquín L. Robles

    Is it possible to render a video in real time with custom parameters ? I'm trying to inject some parameters (text, image and other video portions) into a video template depending on user parameters, like the "Facebook 10 Years video"..

    



    The output format should be any video format such as H.264.

    



    I've been googling and asking and the closest I got is to make a video from HTML5 canvas captures, which I think is totally inefficient.

    



    Any insight or guidance would be great, thanks