Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (82)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7309)

  • Need to convert file format then merge audio files in ffmpeg using bat file

    14 août 2018, par Matthew

    I have been searching quite a bit and cannot find the pieces to make this work. I am looking to convert .g729 audio files to .wav then merge 2 files, and IN and an OUT, into 1 file. I have this much working already.

    @echo off
    for %%A IN (*.g729) DO ffmpeg -i "%%A" "%%A.wav" done

    I have not been able to get the merge to work, I have the basic ffmpeg command to accomplish what I need but it isn’t part of the loop.

    ffmpeg -i <filename>-in.wav -i <filename>-out.wav -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 output.wav
    </filename></filename>

    Any input to get both into one batch would be very helpful.

  • Facebook Live Stream API on iOS

    11 août 2020, par Deepak Sharma

    I see Facebook has a graph API to go live on Facebook, fetch all user reactions, create a poll, etc. But I don't see any sample code in the SDK for the same. I want to stream video from iOS/Android app to Facebook.

    &#xA;

      &#xA;
    1. Is it sufficient to use ffmpeg based libraries on iOS to create live RTMPS stream on Facebook or a third party cloud service is required ? Any sample code that has the Facebook live function builtin ?

      &#xA;

    2. &#xA;

    3. What does the live video API review involves ? Anyone familiar with common causes of rejection for the live video API ?

      &#xA;

    4. &#xA;

    &#xA;

  • Final results of ffmpeg installation are libraries with missing links

    17 avril 2017, par Mikasa
    [poster@localhost lib]$ ldd libavfilter.so
       linux-vdso.so.1 =>  (0x00007ffc6bbd0000)
       libswscale.so.4 => not found
       libpostproc.so.54 => not found
       libavformat.so.57 => not found
       libavcodec.so.57 => not found
       libswresample.so.2 => not found
       libavutil.so.55 => not found
       libm.so.6 => /lib64/libm.so.6 (0x00007fc796d79000)
       libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fc796b5c000)
       libc.so.6 => /lib64/libc.so.6 (0x00007fc79679b000)
       /lib64/ld-linux-x86-64.so.2 (0x00007fc79742b000)
    [poster@localhost lib]$ ldd libswscale.so
       linux-vdso.so.1 =>  (0x00007ffe29572000)
       libavutil.so.55 => not found
       libm.so.6 => /lib64/libm.so.6 (0x00007f4cfdea3000)
       libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f4cfdc87000)
       libc.so.6 => /lib64/libc.so.6 (0x00007f4cfd8c6000)
       /lib64/ld-linux-x86-64.so.2 (0x00007f4cfe442000)

    All of them are like that.
    I’m a newb and don’t know how to solve this. They’re right next to each other.
    Any suggestion is appreciated. Thank you.