Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10522)

  • Custom Build of FFMPEG only for screenshots

    31 août 2020, par Sivakumar

    I have a disk space issues while using static FFMPEG build in my lambda. So can i use Customized FFMPEG build only to take screenshot for my Videos(All Formats Ex : mp4, mov, ...) to JPG. Any suggestions or anyone having reference to get the custom build only for this purpose.

    


  • Streaming using FFMPEG and custom codec

    13 août 2016, par sam

    I’m new to streaming in FFMPEG. I have integrated a custom video decoder into FFMPEG’s multimedia framework.

    So, when i give the command :

    ffmpeg -vcodec myCodec -i input.bin output.yuv

    It generate a output yuv file. So this means that i have properly integrated my codec to FFMPEG’s multimedia framework.

    So, now if i want to stream a video using my custom decoder, how do i proceed ? and for demonstrating both client and server on the same machine, what are the commands i shall use ? I Think, since we have integrated custom codec properly, we don’t need to modify any other thing. However, for streaming using custom decoder if i need to perform any changes in FFMPEG ?

    Thanks in advance.

  • Convert Mp3 to Wav with custom sampling rate

    8 septembre 2020, par Yasir Ahmed Pirkani

    I am trying to convert my Mp3 files to Wav.

    


    when using pydub it works but I get a sampling rate of 8000Hz as default but I need it to be 16000.

    


    I tried using SOX and subprocess but It does not work and gives me an error.

    


    My Code is as Follows :

    


    import subprocess
subprocess.call(['ffmpeg', '-i', '/file/mp3/file.mp3',
                '-r', '16k', '/file/wav/file.wav'])


    


    It return me a file with Sampling rate of 8000.