
Recherche avancée
Autres articles (48)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9820)
-
ffmpeg fails with : Unable to find a suitable output format for 'pipe :'
28 octobre 2022, par user3542055I am trying to record my desktop and save it as videos but ffmpeg fails.



Here is the terminal output :



$ ffmpeg -f alsa -i pulse -r 30 -s 1366x768 -f x11grab -i :0.0 -vcodec libx264 - preset ultrafast -crf 0 -y screencast.mp4
...
Unable to find a suitable output format for 'pipe:'



-
ffmpeg fails with : Unable to find a suitable output format for 'pipe :'
5 novembre 2016, par user3542055I am trying to record my desktop and save it as videos but ffmpeg fails.
Here is the terminal output :
$ ffmpeg -f alsa -i pulse -r 30 -s 1366x768 -f x11grab -i :0.0 -vcodec libx264 - preset ultrafast -crf 0 -y screencast.mp4
...
Unable to find a suitable output format for 'pipe:' -
The correct way to use FFMPEG in JAVA
4 octobre 2018, par FredI have not been able to find lots of information of how to use FFMPEG commands in my JAVA code.
I understand how to execute FFMPEG commands through the terminal, however if I want to use FFMPEG commands in my JAVA code how should I go about it ?
I saw an example of using Java.lang.Runtime class. But if I do it this way, would that not require the computer using my JAVA application to have FFMPEG installed on their computer ?
In short I want to be able to create a JAVA program that has FFMPEG methods available without having the need to have FFMPEG installed.
Is this possible ?