Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (55)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (7864)

  • FFMpeg convert avi video to the format in HTML5 standard

    2 août 2015, par karoluch

    I try to convert an avi file to mp4 format which is supported by the most known browsers eg. : (IE, Firefox, Chrome). I use for that ffmpeg tool. I noticed that video after conversion works on my Ubuntu 14.04 but on the Windows 8.1 it does not work. Which options for ffmpeg should I use to get working mp4 format on the Windows ?

    I use following command to conversion :

    ffmpeg -i example.avi -vcodec libx264 -cpu-used 16 -threads 8 -deadline realtime -acodec libvo_aacenc -y example.mp4

    For the example I convert files from : http://www.mysticfractal.com/video/avi1.html

  • How to ffmpeg resize 2.7k DJI Phantom Standard video to 1080p good quality ?

    23 mai 2016, par augre

    ffmpeg -i :

    Duration: 00:01:59.99, start: 0.000000, bitrate: 39988 kb/s
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 2704x1520 [SAR 1:1 DAR 169:95], 39984 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
    Metadata:
     creation_time   : 2016-05-22 11:04:26
     handler_name    : DJI.AVC
     encoder         : Dji AVC encoder

    I used :

    ffmpeg -i DJI_0002.MOV -vf scale=1920:1080 DJI_0002FullHD.MOV

    But the output quality is much worse than it should be.

    How to improve the quality ?

  • How to add .Net Standard Nuget package into .Net 4.5 Framework Project ?

    16 juillet 2022, par Arjun Natarajan

    I am trying to install https://www.nuget.org/packages/FFMpegCore/4.8.0#dependencies-body-tab (FFMpegCore) Nuget package in my .Net 4.5 Console project. But unfortunately, getting the below error

    


    


    Error NU1202 Package FFMpegCore 4.8.0 is not compatible with net45 (.NETFramework,Version=v4.5) / win-x86. Package FFMpegCore 4.8.0 supports : netstandard2.0 (.NETStandard,Version=v2.0) ScreenCapturer C :\source\repos\ScreenCapturer\ScreenCapturer.csproj 1

    


    


    Actually trying to stream .png images to FFmpeg input pipe & then convert them as a video.

    


    P.S : Kind of new to this FFMpeg as well. So any help would be appreciated.