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)

  • fate : Move screenpresso to the appropriate screen capture file

    14 octobre 2015, par Vittorio Giovara
    fate : Move screenpresso to the appropriate screen capture file
    
    • [DBH] tests/fate/screen.mak
    • [DBH] tests/fate/video.mak
  • How to merge 3 video in one screen with blur

    12 avril 2019, par Fejor

    How to merge 3 videos on one screen, with blur on 2 of videos

    I already wrote code and it’s look likes this

    ffmpeg -i input.avi input1.avi input2.avi -filter_complex "[0:v]gblur=sigma=6.5[v10];[1:v][v11];[2:v]gblur=sigma=6.5[v12];[v10][v11][v12]hstack=inputs=3[v]" -map "[v]" output.avi

    And i get error like this

       o such filter: ''
    Error initializing complex filters.
    Invalid argument

    What i should do ?

  • Using JNI in my project and geeting error "Fatal signal 11 (SIGSEGV) at 0x000000ec (code=1) "

    9 juillet 2012, par Rahul Upadhyay

    I read so many post on this que but was unable to find out my problem. I am using JNI ina my project, developing with FFMPEG library. When i start decoding video using ffmpeg it gives me an error Fatal signal 11 (SIGSEGV) at 0x000000ec (code=1) and force stop.

    Using Nexus, and it uses maxMemory : 67108864

    i know heap Size by applying this code

    Runtime rt = Runtime.getRuntime();
    long maxMemory = rt.maxMemory();
    Log.v("onCreate", "maxMemory:" + Long.toString(maxMemory));