Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (39)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (4493)

  • How to compress video in android faster ?

    21 avril 2017, par Qandeel Abbasi

    I have recently used ffmpeg library for android to compress the video of length 10 seconds and size nearly 25 MB. Following are the commands i tried to use :

    ffmpeg -i /video.mp4 -vcodec h264 -b:v 1000k -acodec mp2 /output.mp4

    OR

    ffmpeg -i input.mp4 -vcodec h264 -crf 20 output.mp4

    Both of the commands were too slow. I canceled the task before it completed because it was taking too much time. It took more than 8 minutes to process JUST 20% of the video. Time is really critical for me so i can’t opt for ffmpeg. I have following question :

    • Is there something wrong with the command or ffmpeg is slow anyway ?
    • If its slow then is there any other well documented and reliable way/library for video compression that i can use in android ?
  • How to compile ffmpeg-2.5.3 on windows with android-ndk-r10d

    12 janvier 2015, par chandan chaudhary

    I am trying to compile FFMPEG for android on windows using android-ndk-10d. I have followed number of tutorials but I am unable to compile it.
    Can any one please help me to compile FFMPEG. I have referred many blogs and tutorials but I am unable to retrieve the expected result.

    I have used the following link roman10, but it isn’t working.
    Please help me.
    Thank You

  • How to merge a video using ffmpeg.so in android

    16 avril 2019, par Sp4Rx

    I’m using android-gpuimage-plus for camera and filters. I’ve noticed that this library contains ffmpeg.so. I also need to implement merging and trimming of the video. I’m aware of the implementation of merge, trim using ffmpeg binary in android. But I don’t want to include ffmpeg binary separately as it already contains ffmpeg.so.

    I have also checked that the JNI source of ffmpeg contains classes for muxing and demuxing but I’m not sure how to use it.

    Could anyone tell me how to use the ffmpeg.so to perform merg, trim ? Means how to write java interface to access the native muxing/demuxing code.

    NB : I’m not a c/c++ guy so it’s hard for me to understand the methods of muxing/demuxing classes.