Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (112)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (8034)

  • Revision 1c6203192d : cq_test : allow test cases to be run out of order check that bitrates increase w

    13 août 2014, par James Zern

    Changed Paths :
     Modify /test/cq_test.cc



    cq_test : allow test cases to be run out of order

    check that bitrates increase with cqlevel at global test case teardown,
    rather than after each individual test case. this allows the tests to be
    run out of order with —gtest_shuffle.

    Change-Id : I9e0d4e6a2d920a1f2fe9aee7b7876a3e7eb5d297

  • How to setup FFmpegMediaMetadataRetriever to a project with another native library

    20 avril 2016, par kishidp

    So I have a project that uses a native library that only supports arm.

    I want to use FFmpegMediaMetadataRetriever for the metadata retriever, I added the dependency on build.gradle file. However, when I tried to run the application, the native library I’m using suddenly doesn’t work anymore.

    There was an error that says "UnsatisfiedLinkError", I assume the library was not loaded. I also assume that it has something to do with the FFmpegMediaMetadataRetriever having support to other CPU (x86, mips, etc.)

    I saw an option to use individual architecture, I added the arm aar as module to my project (I remove the FFmpegMediaMetadataRetriever dependency), I was able to run the app, but I don’t know what to do after that. Any help ?

  • Time-weighting frames of an animation using FFMPEG [duplicate]

    12 mars 2020, par Rohan S Byrne

    I’m using ’ffmpeg’ to make an mp4 out of hundreds of individual frames, which are timeslices from an experiment I’ve run. My problem is that the time sampling is not regular. I would like to somehow ’weight’ the frames according to their time index so that the framerate is fast when the sampling rate was fast and slow when the sampling rate was slow.

    I know how to do this sort of operation when taking, for instance, a time average using numpy arrays. I have no idea how to do it with ffmpeg.

    Any tips ?