Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (94)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (13130)

  • Encoding sounds to play in a Google Hangouts app with ffmpeg

    12 mai 2014, par user3463570

    I have a Google Hangouts app and I am trying to let the user play a sound that I provide.

    Google has this covered, with its Audio Resource, but it only accepts specifically encoded sound files, PCM 16 wav files.

    I have been trying to encode my files using ffmpeg, but it does not seem to be working.
    Any idea as to what I am doing wrong ?

    Here is my ffmpeg command line :
    ffmpeg -i sound.mp3 -map_metadata -1 -flags bitexact sound.wav

    Thanks for your help

  • How to pipe live stream output of ffmpeg to google drive using rclone

    24 février 2021, par CARE HF

    I want to send live captured output of ffmpeg to google drive (not by storing in local and then move using rclone)

    


    ffmpeg -i "$url" -t 00:00:20 -map 0 -c copy "1.mp4" | rclone cat rclone:/rclone/1.mp4


    


    I tried above but fails.

    


  • ffmpeg -vg -filtercomplex, create gif with color kway and limited fps

    3 février 2020, par daniel

    I need to create a gif file with color key (greenscreen) with 10FPS and specified size. I try to combine -vg and -filter_complex :

    ffmpeg -i testdatei-c.avi -vf "fps=10,scale=320:-1:flags=lanczos" -filter_complex "[0:v]chromakey=0xFFFFFF,split[v0][v1];[v0]palettegen[p];[v1][p]paletteuse" output.gif

    I get the error :

    Filtergraph 'fps=10,scale=320:-1:flags=lanczos' was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a complex filtergraph.
    -vf/-af/-filter and -filter_complex cannot be used together for the same stream.