Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (27)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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 ;

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

  • decoding of APE (Monkey's Audio) using FFmpeg

    19 juillet 2013, par Imran.vatic

    I am developing a player which plays different audio formats,I have successfully played mp3,acc,wav,ogg,alac,flac formats. But now stuck on APE or Monkey's Audio format, I am using a open source library FFmpeg for decoding.Can someone tell me how to decode APE format,I am successful in creating the packets,storing in a buffer and passing it to FFmpeg in the same fashion as I did for other formats,but FFMpeg is not able to decode those packets.Can someone tell me what wrong I am doing ? What should be the buffer size in case of ape that needs to be passed to ffmpeg.Also header parsing, The decode function of ffmpeg is avcodec_decode_audio3.

  • Remove terminal opened by ffmpeg-python

    28 février 2021, par Omid Ki

    I have this program that combines audio and video together and for that I use ffmpeg and ffmpeg-python. The program works really well but when I try to make an exe version, naturally, it pops up a terminal and shows the ffmpeg functioning. I saved the file as .pyw instead of .py so that no window will pop up but it still happens. I also saw another post on how to make the terminal disappear in subprocess but I am using ffmpeg-python and cannot control how subprocess is used unless I modify the source which I do not intend to. Is there anyway to make the terminal window disappear without modifying the source ?

    


  • how i write ffmpeg effects(sepia, blur etc) commands in Kotlin or Android programming ?

    27 juin 2018, par jass patel

    Using two diffrents ways :-

    1 :-

    val command = arrayOf("-i", path, "-filter_complex", "[0:v]colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]; [colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect]", "-map", "[color_effect]", "-c:v", "libx264", "-c:a", "copy", outputFilename)

    2 :-

    val command = arrayOfNulls<string>(11)
               command[0] = "-i"
               command[1] = path
               command[2] = "-filter_complex"
               command[3] = "\n[0:v]colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]; \n[colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect]"
               command[4] = "-map"
               command[5] = "[color_effect]"
               command[6] = "-c:v"
               command[7] = "libx264"
               command[8] = "-c:a"
               command[9] = "copy"
               command[10] = outputFilename
    </string>

    what is the correct way to write an effect command in android ?
    Please guide.
    thanks