Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (5397)

  • I've download ffmpeg source code,but I don't know how to use it on anroid

    23 octobre 2013, par Sravanthi Pasaragonda

    I've download ffmpeg source code,but I don't know how to use it on anroid.I need to remove audio from vedio file and i need to add other audio to vedio.This is my Task .I am using ubutu 10.04 ,And i have installed NDK-r9,ffmpeg and yasm 1-2.0 in my system.
    please any sample process to how to start ffmpeg example,i have downloaded lot of example from GITHUB Like

       https://github.com/appunite/AndroidFFmpeg
       http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/
       https://github.com/mconf/android-ffmpeg



    But i dont no how to complie all projects using ffmpeg.

    Please give me step by step process for any ffmpeg example in ubutu.

    Thanks

  • FFMPEG — Create New Audio File using aselect filter API call in C code

    17 juin 2021, par AfricanMamba

    I have been working on an a program in C that invokes the use of FFMPEG's libraries to remove some segments of audio from a given audio file. I have created the filter successfully using the API call, const AVFilter* aselect = avfilter_get_by_name("aselect"), linking it with abuffersrc and abuffersink.

    


    However, I am not sure entirely sure what to pass in to the arguments when creating the filter because when I pass in the argument string, "'between(t,10,32)', asetpts = N/SR/TB output.wav", it gives me an error saying : "Invalid chars ',asetpts=N/SR/TBoutput.wav' at the end of expression"

    


    But when I pass in just "'between(t,10,32)'" as the arguments for the filter, the program compiles and runs but no output file is created with just the audio from 10 seconds to 32 seconds. Does anyone happen to know if it is even possible to use the aselect filter API to create new audio files or if there is an example that exists showing how to copy only frames from one audio file to another ? Thanks !

    


  • How to debug ffmpeg c code used in IJKmediaplayer ?

    15 août 2015, par Daniyal Yasin

    I am trying to use the libstagefright codec of ffmpeg to decode an mp4 file using IJKmediaplayer on android. IJKmediaplayer is sort of a wrapper enabling the use of ffmpeg on Android.

    This is the link giving basic info about ijkmediaplayer : https://github.com/Bilibili/ijkplayer

    The link also describes the build process for ijkmediaplayer. First ffmpeg is built then the shared libraries are copied to appropriate places and then I have to import the project in eclipse.

    I use the ijkmediaplayer android project in eclipse as a library project in another android application. The structure is like this :

    |-ijkmediaplayer
    | |-jni
    |   |-ffmpeg (this folder doesn't have the complete source just headers)
    |   |-ijkmedia (some c source files of ijkmediaplayer)
    |
    |-my_project

    So my question is how do I debug libstagefright.cpp from my application ?

    Libstagefright.cpp is contained in the ffmpeg source not visible in the android ijkmediaplayer project. But used when building the ijkmediaplayer android project as described in the link.

    The debugger easily reaches the code of the ijkmediaplayer android project. But does not proceed to the native code automatically if I press f5.