Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (53)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • rtl_fm stream with ffmpeg and low bandwith

    13 février 2019, par Felix Bäder

    I currently try to stream audio from rtl_fm via ffmpeg to node-media-server.

    This is working fine.

    rtl_fm -f 103.0M -M fm -s 44.1k -A std -l 1 -g 40 |
    ffmpeg -f s16le -ac 1 -i pipe:0 -f flv rtmp://192.168.178.42/live/lorem

    But :
    The I want to listen to the signal from the frequency e.g. 83.0M and the bandwith (-s) is set to 20k.

    Now the streamed audio is to fast. The audio sounds like pitched up and the terminal output of ffmpeg for speed is about 0.5x instead of 1x.

    How can i stream this frequency with a bandwith of 20k without getting a bad output ?

  • Error creating folder based on file name in ffmpeg

    18 janvier 2023, par user21008368

    I've been trying to convert multiple videos into image stacks using ffmpeg. I would like to convert multiple videos at once, and export all the images from one video into a new folder, named after the video.

    


    I've found the following code from a previous question, but I can't get it to work on my computer (I'm using a mac).

    


    @echo off for %%i in (*.mp4) do (if not exist "%%~ni\" MD "%%~ni" ffmpeg -i "%%i" -vf fps=1/1800 "%%~ni\%%~ni_%%d.jpeg")

    


    I keep getting the error

    


    parse error near %%i`

    


    I think this is probably a syntax error, but I'm relatively new to using ffmpeg and working in the terminal.

    


  • How do I use ffmpeg on linux for my discord music bot ?

    7 mars 2023, par Dio

    I made a discord music bot a while back for me and my friends to use(it is minimalistic), but I recently switched from windows to Linux. I was using FFMPEG for my bot(the .exe file was in the same folder as the code).
I'll leave the Github link to my bot down here :

    


    https://github.com/Dorian1997/Discord-Bot

    


    Now my question is, do I have an alternative to FFMPEG on Linux ? Or how exactly should I install FFMPEG for it to work right ? I already installed it from the terminal, yet it doesn't seem to work as the bot cannot play anything.
Thank you for your time !