Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (55)

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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7095)

  • How to get offset from audio

    24 avril 2014, par Dhaval

    I need to insert another audio on specific offset (where space existed in audio track).

    So, For that, i need to fetch offset of each space from audio and then apply some ffmpeg/sox command to insert another aduio on that offset.

    Please share me some command to fetch the offset for space
    first so, later, i could mix the another audio on same offset.

    Please suggest your view/command or any library.

    I think, it would be possible in FFMPEG OR SOX.

    Updated :
    I have two audio files.
    In which one audio files contains some songs but, there are some space at some interval. These space should be fill by another audio.

    example :
    Audio 1 - song - audio has space at 5 places.

    audio 2 - a people name audio.

    output - audio one should fill up the all 5 places by aduio 2.

    Thanks

  • ffmpeg libswresample channel mapping

    21 mars 2024, par Joseph Katrinka

    Im currently working on some c++ that uses ffmpeg to take audio from a stereo file and make a mono audio file using only the sample from one channel.
I havent been able to find and examples of people using the swr_set_channel_mapping call online, so Im wondering if anyone knows of the correct usage.
Right now Im doing something like this

    


    swr_alloc_set_opts2(&swrCtx, &out_channel_layout, AV_SAMPLE_FMT_S16, codecCtx->sample_rate, &codecCtx->ch_layout, codecCtx->sample_fmt, codecCtx->sample_rate, 0, NULL);

int* channel_mapping = (int*)av_mallocz(2 * sizeof(int));
if (useLeft)
{
channel_mapping[0] = AV_CH_FRONT_LEFT;
}
else
{
channel_mapping[0] = AV_CH_FRONT_RIGHT;
}   
swr_set_channel_mapping(swrCtx, channel_mapping);

if (swr_init(swrCtx) < 0)
    {
        DBG("failed to init resampler");
        ffmpegCleanup();
        return false;
    }



    


    Is this the correct way to do this ? Its been giving me some problems and Im worried I could be doing something wrong.
Thanks.

    


    Ive tried different ways of defining channel_mapping with no success. Im not sure what the correct way is and an example would be pretty useful.

    


  • MAINTAINERS : Add a maintaince level field

    14 août 2024, par Michael Niedermayer
    MAINTAINERS : Add a maintaince level field
    

    Text was stolen from the linux kernel
    This is thus identical to the kernel just a different more compact format.
    I am very happy also to switch the file entirely to the format of the linux kernel maintainer list
    if people prefer

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS