Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (66)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6519)

  • FFmpeg fourcc Avi codec support list ?

    5 décembre 2013, par Sugrue

    A couple of similar questions are on stackoverflow, but I haven't been able to figure this exact problem out.

    I want to get a list of the fourccs for the avi codecs that FFMpeg can decode.

    I know how to get all the formats ffmpeg -formats and codecs ffmpeg -codecs but neither list gives me an accessible list of fourccs. Neither does the documentation I can find.

    I need this list, so that my application can access the fourcc of an avi file and determine whether to use ffmpeg or VfW (or DirectX) to try decode the file.

    Is there some ffmpeg command that can give me this list ?

  • Using FFMPEG To Fill in Gaps of a Raw Audio UDP Stream

    14 février 2020, par Wallace

    I have a software defined radio (SDR) that picks up audio from emergency services and with the help of software, streams raw audio using UDP. The audio is PCM signed 16-bit little-endian. The UDP stream is also not constant and only has data when audio is detected.

    The problem I’m trying to solve is that I would like the gaps in recorded audio to be filled with silent or Null audio. Below are just a couple of my attempts at resolving this :

    1. ffmpeg -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -af aresample=async=1 -acodec libmp3lame -
      f rtp rtp ://127.0.0.1:1234
    2. ffmpeg -re -f lavfi -i anullsrc -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -filter_complex
      amix=inputs=2:duration=first -acodec libmp3lame -f rtp rtp ://127.0.0.1:1234

    I guess my questions are regarding the best way to resolve this and whether or not ffmpeg can be used in a way to accomplish this ?

  • CMD FFMpeg Converting from one directory to another

    2 mai 2017, par Jeff Wenz

    I have the folder which has the ffmpeg.exe. In this folder I have 2 folders : MP4 and MP3. In the folder called MP4, I have a bunch of video I want just the audio from. I want to convert all of them to mp3 and stick them in the MP3 folder. I have the code to convert but don’t know how to deal with the directories. I can move all of the mp4’s to the root with the exe and then all of them will convert to mp3 right there, but I want to organize them in their directories. How can I edit my code to work with the directories in the root folder ?

    FOR /F "tokens=*" %G IN ('dir /b *.mp4') DO ffmpeg -i "%G" -acodec mp3 "%~nG.mp3"

    Edit : tried lit’s code :

    FOR /F "tokens=*" %G IN ('dir /b "mp4\*.mp4"') DO ffmpeg -i "%~G" -acodec mp3 "mp3\%~nG.mp3"

    and tried a couple different edits and kept getting the result "No such file or directory"

    View cmd output image here