Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Revision 306319387b : acm_random : provide full range for Rand8() the gtest implementation used only r

    27 novembre 2014, par James Zern

    Changed Paths :
     Modify /test/acm_random.h


     Modify /test/lpf_8_test.cc



    acm_random : provide full range for Rand8()

    the gtest implementation used only returns values between 0 and 2^31-1

    + temporarily disable some tests in lpf_8_test which misbehave with the
    new range

    Change-Id : I8a026680c4b8c12dc14d4f24c33edb2315963114

  • Revision 276ab21562 : Merge "acm_random : provide full range for Rand8()"

    4 décembre 2014, par James Zern

    Merge "acm_random : provide full range for Rand8()"

  • How to reduce mp4 size by using FFMPEG lib into android

    19 septembre 2016, par Swap-IOS-Android

    I am new to NDK so i read tutorial and i successfully build the FFMPEG lib than i copied it into my jni folder create Android.mk and Application.mk file and execute ndk-build command so now i got libavcodec.so into my lib folder..( i didnt copy ffmpeg header files into my jni folder .. is it necessary to add header file or should i add complete ffmpeg lib into jni... stack-overflow comments say that you just have to add header files)

    I know that if i want to convert my camera video into small size than i have to compress it by using avcodac.so so i compile it but important this is How can i use that.

    There is confusion in my mind to use that so file..
    1) Should i need to use System.load("libavcodec.so") method to load So file IF yes after loading so files how can i access the native methods of C/C++ ?

    2) Or should i need to create my java class and my c class which both communicate with each other and that c class communicate with avcodec class of ffmpeg ??

    Or should need to implement both and one more important thing IF i have to create my c class than in Android.mk i have to add it into source file line ???

    And please can anybody tell me what are the method and steps available to compress video file size in FFMPEG ?

    Any help is appreciated and this my question will also helpful to other fresher.
    Thank you