Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (6)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3128)

  • Compile x264 with Thread Support for Android Platform

    10 novembre 2013, par Stryker33

    I’ve been tryin’ to compile x264 for Android with Thread Support...But with no success...

    I’ve managed to compile the same without thread support...The configure command is as follows :

    ./configure --prefix=$PREFIX \
    --enable-pic \
    --host=arm-linux \
    --disable-cli \
    --cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
    --sysroot=$PLATFORM

    where PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86 and
    PLATFORM=$NDK/platforms/android-14/arch-arm

    I’ve also tried with and without the option --enable-static and extra-ldflags="-lpthread", but when attempted make it ends with errors.

    Is there any way to accomplish the above said...?

  • Compile x264 with Thread Support for Android Platform

    10 novembre 2013, par Stryker33

    I've been tryin' to compile x264 for Android with Thread Support...But with no success...

    I've managed to compile the same without thread support...The configure command is as follows :

    ./configure --prefix=$PREFIX \
    --enable-pic \
    --host=arm-linux \
    --disable-cli \
    --cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
    --sysroot=$PLATFORM

    where PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86 and
    PLATFORM=$NDK/platforms/android-14/arch-arm

    I've also tried with and without the option --enable-static and extra-ldflags="-lpthread", but when attempted make it ends with errors.

    Is there any way to accomplish the above said...?

  • Moov atom in android MeidaRecorder recorded data

    11 mars 2013, par mmmaaak

    I have a problem :

    I record data from camera using MediaRecorder in my Android app. I save it in socket, not in file. This data's length may be different. At the other side of socket connection, I save it in file. Connection may be interrupted at any unexpected moment. So after android socket disconnection I try to decode received data using ffmpeg. But as I understood, it cant find moov atom in this file. I've read some info about moov, so I think that MediaRecorder puts moov atom in the end of file. But if recording was interrupted, writing moov atom was skipped.

    I also have read that for data with unknown length (progressive loading, streaming) it is possible to write moov atom at the begining of the file.

    How to write my own moov data into the stream ? May I use MediaRecorder for this ? Or it is neccessary to do it manualy ? How to generate valid moov data ? If anybody has already solved this problem, please give me advice..