Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (98)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (12655)

  • Make Command Won't Link FFMpeg

    16 novembre 2023, par ThomasNotTom

    I am trying to install FFMpeg and I am using a Mac.

    


    I keep getting

    


    archive member '/' not a mach-o file in '[The path to the directory]/libavdevice/libavdevice.a'


    


    And there is one for each libav folder.

    


    I am running the following commands

    


    git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure  --prefix=/usr/local
make


    


    I'm not too sure what I should be expecting, but an error is definitely not it

    


    — edit —

    


    I have also tried with FFMpeg version 3.0. And I got the same error

    


  • Make video file playable in html5

    1er décembre 2015, par Léo Le Gall

    I have a video file with Codec : H264 - MPEG-4 AVC (part 10) (h264). I want to make it playable in html5 <video></video>.

    I have another file that is Codec : H264 - MPEG-4 AVC (part 10) (avc1), which is playable in <video></video>.

    So, the only difference as I can see is (h264) vs (avc1).

    How can I make the first file playable in <video></video> with the least CPU usage ? I want to use ffmpeg or similar tools from terminal.

  • ffmpeg make gif file size too big

    26 octobre 2023, par Allen_Tsang

    I am trying to make gif from video by ffmpeg, but the output gif file size is too big.

    &#xA;&#xA;

    &#x27;/usr/bin/ffmpeg&#x27; &#x27;-ss&#x27; &#x27;00:00:00.00&#x27; &#x27;-t&#x27; &#x27;5&#x27; &#x27;-i&#x27; &#x27;/htdocs/vv.mp4&#x27; &#x27;-vf&#x27; &#x27;scale=480:-1&#x27; &#x27;-gifflags&#x27; &#x27;&#x2B;transdiff&#x27; &#x27;-y&#x27; &#x27;/htdocs/gg.gif&#x27;

    &#xA;&#xA;

    the input file size is just 259k, and the output file size is 1.7M.

    &#xA;&#xA;

    Is there a simple way to lower down the gif size ?

    &#xA;