Recherche avancée

Médias (91)

Autres articles (87)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (7995)

  • How can I batch/sequentially download m3u8 files using ffmpeg & Power Shell in Windows ?

    28 février 2020, par piznajko

    There’s a similar question asked asked by Yesterdec but for Mac batch scirpt

    I’m currently downloading m3u8 videos one by one using the following Power Shell command on Windows :

    ffmpeg -i "http://example.com/video_url.m3u8" -c copy -bsf:a aac_adtstoasc "output.mp4"

    I want to automate this process, using some FetchURL.bat scirt and a URLs.txt file with the URLs (each URL there is seperated by a new line) to download one by one multiple m3u8 videos from the URLs.txt.

  • looking to download ffmpeg 32-bit windows with developer files (libs, dlls, headers)

    26 juillet 2023, par Peter

    I can't find a 32-bit version of ffmpeg for Windows with developer files anywhere. When I say "developer files" I mean avcodec-xx.dll, avcodec.lib, avcodec.h, et cetera.

    


    Is there something available online other than the source code ?

    


  • .NET Wrapper ffmpeg convert to mp4 set size to 1920 x 1080

    1er août 2020, par Robert

    I in my application written in .NET Core I use ffmpeg to convert movie from 3gp to mp4.

    


    var conversionOptions = new ConversionOptions
{
   MaxVideoDuration = TimeSpan.FromSeconds(60),
   VideoAspectRatio = VideoAspectRatio.R16_9,
   VideoSize = VideoSize.Hd1080,
   AudioSampleRate = AudioSampleRate.Hz44100,
   //  CustomWidth = 200
};
                    
await ffmpeg.ConvertAsync(inputFile, outputFileMp4, conversionOptions);


    


    Convertion works fine, but my source movie is from mobile phone. Its frame size is 1920 x 1080 but the movie is higher than wider.
After conversion with above code the frame is the same but the movie is cuted and it is wider than taller.
I wanted to have original size