
Recherche avancée
Autres articles (34)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (5958)
-
Python : Matplotlib Animation FFmpeg, RuntimeError : No MovieWriters available
10 décembre 2017, par ib-The problem I am getting is in code similar to this example :
https://matplotlib.org/examples/animation/basic_example_writer.htmlThe error :
RuntimeError : No MovieWriters available occurs at
Writer = animation.writers['ffmpeg']
in the example above.I am using mac, I have installed ffmpeg using brew, and even installed it with conda even though I am not using anaconda for this particular code.
I am positive that it is installed - I have used it in terminal to change files but it is not working within the program.
Thanks !
-
Matplotlib animation with FFmpeg : RuntimeError : No MovieWriters available
11 décembre 2017, par ib-The problem I am getting is in code similar to this example :
https://matplotlib.org/examples/animation/basic_example_writer.htmlThe error :
RuntimeError : No MovieWriters available occurs at
Writer = animation.writers['ffmpeg']
in the example above.I am using mac, I have installed ffmpeg using brew, and even installed it with conda even though I am not using anaconda for this particular code.
I am positive that it is installed - I have used it in terminal to change files but it is not working within the program.
Thanks !
-
How can I notify that ffmpeg started recording ? [closed]
20 avril 2021, par JisatsuI have a little script that runs ffmpeg to record my desktop. And I want this script to send me notification that recording has been started. I tried to add
&&
operator but it seems that it runs second command only when first command ended.

screencast.sh :


#!/bin/sh

ffmpeg -y \
-f x11grab \
-s 1920x1080 \
-i :0.0 \
-f alsa -i default \
-c:v h264 \
-c:a aac $1 && notify-send "Started recording"
 ^^^^^^^^^^^^^^



In addition, I want to know how can I stop this script correctly, if I run it outside of terminal (for ex. from dmenu). And can I get some notification that "Recording has been stoped" or smth ?


I'll be glad to hear all suggestions. Thanks.