Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (74)

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

  • Arc media file conversion

    6 juin 2016, par karthikpj

    I have a file with arc extension.It is supposed to contain media files but I cant open it with any program.I have tried all media players,ffmpeg and even freearc software but cant find the way to open it.I need to convert it to any other common format such as mp4 or avi and so on.

    Few lines of hex code

  • How can i create a stable checksum of a media file ?

    19 février, par yawniek

    how can i create a checksum of only the media data without the metadata to get a stable identification for a media file. preferably an cross platform approach with a library that has support for many formats. e.g. vlc, ffmpeg or mplayer.

    



    (media files should be audio and video in common formats, images would be nice to have too)

    


  • Importing a part of a project in Eclipse

    10 mars 2015, par Arif Gencosmanoglu

    On Eclipse, I imported FFmpeg as a project to reduce a selected video sizes for my android application. But my .apk size went up from 2MB to 24MB.

    This project includes a lot of extra properties for video editing. However I use only one single command line to reduce my video resolution. The code I added :

    LoadJNI vk = new LoadJNI();
                       try {
                           String workFolder = getApplicationContext()
                                   .getFilesDir().getAbsolutePath();

                           String[] complexCommand = {
                                   "ffmpeg",
                                   "-y",
                                   "-i",
                                   "/storage/emulated/0/DCIM/Camera/20150224_125355.mp4",
                                   "-strict", "experimental", "-s", "160x120",
                                   "-r", "25", "-vcodec", "mpeg4", "-b", "150k",
                                   "-ab", "48000", "-ac", "2", "-ar", "22050",
                                   "/storage/emulated/0/TempFolder/out.mp4" };
                           vk.run(complexCommand, workFolder,
                                   getApplicationContext());

                           Log.i("test", "ffmpeg4android finished successfully");
                       } catch (Throwable e) {
                           Log.e("test", "vk run exception.", e);
                       }

    To sum up, is there a way to import a portion of a project (as a module maybe) ? or do I have to find another method to reduce my video size ?