Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (68)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (8076)

  • How to make ffmpeg realy silen without to use another process

    29 octobre 2013, par Dougui

    I'm using ffmpeg in a ruby code like this :

    fork { exec "ffmpeg -f alsa -ac 2 -i pulse -y #{path} -r 22050" }

    It sends the pid of the created process. In the trace, I have this :

    Stream mapping:
     Stream #0.0 -> #0.0
    Press ctrl-c to stop encoding
    psize=     832kB time=4.52 bitrate=1507.4kbits/s    6.1kbits/s    its/s    
    size=     963kB time=5.14 bitrate=1536.1kbits/s    
    video:0kB audio:963kB global headers:0kB muxing overhead 0.004664%

    I want to make it quiet. I tried to add -loglevel panic and -v 0 but it does not work. I know, I can add this >/dev/null 2>&1 but it create another process and my method send only the pid of the first process.

    Is there a way to make ffmpeg realy silent without to create another process ?

  • Why does ffmpeg h264 decoder stop decoding when certain type of packets are coming in the input stream ?

    28 juillet 2018, par jamsme

    I used av_read_frame to get the AVPacket from encoded h264 file. But when this packet (00 00 01 05 94 5a 33 e7 4d 6b d7 ad 13 86 ff 47 83 93 31 f1 e3 0a) is in the input stream (h264 video) ffmpeg decoder stops decoding frames for any subsequent AVPackets.
    But if I skip this packet to provide to the decoder the next AVPackets decode just fine. What is wrong with this packet ? Or what is wrong with the ffmpeg decoder ?

    Below is the test stream for reference.

    https://drive.google.com/open?id=1rHCfG4csA3rB4LSgErEBn1F3WfI5nUVr

  • Using ffmpeg to remove green screen from video

    27 mai 2024, par CYAD

    I have a video : https://drive.google.com/file/d/1tiP2fX0Xfc6YjIymcHyEXP8-JqEJrlgG/view

    


    I'm trying to use ffmpeg to remove the green screen but none of the commands I use work. I saved a frame as a png and was able to remove the green from it :

    


    ffmpeg -i green.png -vf chromakey=green:0.1 out.png

    


    but the video edit does nothing.

    


    ffmpeg -i video.mp4 -vf chromakey=DarkGreen:similarity=0.2:blend=0.3 output4.mov

    


    I'm on a windows machine and need to output a format iOS and Android can use, though multiple formats are fine. Any thoughts ?