
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (29)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar 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 ;
-
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 (6852)
-
Why does x264 keep giving me "command not found" error on my Mac ? [closed]
2 juillet 2021, par hd-dvdI just installed x264 via Homebrew on my Mac running MacOS 11.4 Big Sur. I'm trying to encode a video but I can't get x264 to run properly.


This is the command I am running in the Terminal :


x264 --bitrate 25000 --preset veryslow --bluray-compat --tune film --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 --keyint 30 --open-gop --slices 4 --fake-interlaced --colorprim "bt709" --transfer "bt709" --colormatrix "bt709" --sar 1:1 --pass 1 -o out.264 in.mp4


and this is what it outputs :


bash: x264 --bitrate 25000 --preset veryslow: command not found


If I delete the
--preset
part then it just gets hung up on some other part, like--tune
.

I have tried
brew doctor
and there are no errors.

If I just run
x264
then it gives mex264 [error]: No input file. Run x264 --help for a list of options.
so it seems as if x264 is installed. I don't know where to begin troubleshooting this but I'd like to get it to work.

If I simplify the command way down to
x264 -o out.264 in.mp4
then I get :

avs [error]: failed to load avisynth
raw [error]: raw input requires a resolution.
x264 [error]: could not open input file `in.mp4' via any method!



I would greatly appreciate some pointers on how to get this working.


-
ffmpeg (IMAGE THUMBNAIL 1 frame) how to "choose" compression quality when we use -vframes 1 (how to do like convert -quality 60....)
25 juillet 2021, par jini• PRE-CONTEXT : with ImageMagick, I'm use to do
convert -quality 60 1.jpg 1.webp
here "quality 60" affect the final size of the output

• CONTEXT : create a poster.webp OR poster.jpg of a movie.mp4


• QUESTION : how can we "achieve" the same compression level choice with ffmpeg when we want 1 frame


• WHAT I TRIED [1] :


ffmpeg -i movie.mp4 -vframes 1 -qmin 0 -qmax 1 0.webp


and
ffmpeg -i movie.mp4 -vframes 1 -qmin 50 -qmax 51 50.webp


==>> both gives the exact same size for the output.


• WHAT I TRIED [2] :


ffmpeg -i movie.mp4 -vframes 1 -b:v 9k bv9k.webp


and
ffmpeg -i movie.mp4 -vframes 1 -b:v 1k bv1k.webp


==>> both gives the exact same size for the output.


what I'm I missing or miss using here ?


Thanks


-
lavc/mediacodecdec : set codec profile and level from extradata for H264+HEVC
13 décembre 2021, par sfan5lavc/mediacodecdec : set codec profile and level from extradata for H264+HEVC
This value is later passed to MediaCodec and checked at decoder init.
Notably decoding of 10-bit streams before this commit would "work" without
returning errors but only return garbage output (on most Android devices).