Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (111)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (13765)

  • How to stitching (side by side)more than one live video streams using ffmpeg

    25 mars 2013, par Samy

    Actually I am using ffmpeg for stitching two videos using following command

    ffmpeg -i dd.f4v -vf "[in] scale=iw/4:ih/4,pad=2*iw:ih [left] ;

    movie=ee.f4v, scale=iw/4:ih/4 [right] ;[left][right]overlay=main_w/2:0
    [out]" out.f4v

    But i am unable to stitch's live streams

    so anybody know how to stitch two live streams side by side.

  • ffmpeg how to add different audio affects to video

    1er juin 2020, par 3sd

    windows 7 64 using ff-mpeg latest version downloaded command-line.

    



    1:how do i distortion the background audio sound of drums or bass or anything but not affect the voice.
2:how do i add a sound something similar to audio is ripping,like a page ripping sound.
    
3:how do i randomly add a overlay sound effect of distortion something similar to -b 18k

    



    -b 18k decreases the audio quality i think and i am looking to do something similar in different variations.

    


  • converting audio file and return it

    22 avril 2020, par louay jaber

    I'm trying to convert an mp3 file to wav file. using the following code

    



    def change_file(file):
    print(file)
    wav='fff'+'.wav'
    print('here ')
    mp3_file=file
    sound=pydub.AudioSegment.from_mp3(mp3_file)
    sound=sound.set_frame_rate(8000)
    temp=sound.export(wav, format="wav")

    return temp//doesnt work


    



    the sound.export saves the file on my machine I don't want it to be saved I want to return it immediately cause I am using this code as an API in Django
so my goal is to except a file and convert it then return it