
Recherche avancée
Autres articles (86)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (11614)
-
How to compile ffmpeg for Android
3 octobre 2016, par user1190248As we know ,we can compile ffmpeg for android in linux or windows(cygwin),But now the latest ndk has integrated the cygwin. I guess I can use android studio and ndk to compile ffmpeg directly,so is it ok ?
-
Enabling rtmp_swfurl option in FFmpeg
24 avril 2013, par MustafeIn Unix, in order to process RTMP live stream URLs some live streams needs
swfurl
,pageurl
extra. We are able to pass this parameters to theRtmpDump
and pipe it to the FFmpeg.However some FFmpeg has
rtmp_swfurl
its own. How can we enable this options in FFmpeg, not all of them have. Although I have latest version I do not have them. -
How to use ffmpeg to encode video in H.264 ?
7 mai 2016, par seaguestI have installed ffmpeg 3.0 from https://github.com/FFmpeg/FFmpeg, I am trying to convert a video coded with mepeg4 part 2 to H264, but I got
Unknown encoder 'libx264'
errorHere is my comannd : (I tried h264, x264, libx264, none of them worked)
ffmpeg -i Fashion.divx -acodec aac -vcodec libx264 out.mp4
I checked the list of supported codec
Codecs:
D..... = Decoding supported
.E.... = Encoding supported
..V... = Video codec
..A... = Audio codec
..S... = Subtitle codec
...I.. = Intra frame-only codec
....L. = Lossy compression
.....S = Lossless compression
-------
D.VI.. 012v Uncompressed 4:2:2 10-bitHere is h264 :
D.V.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_vdpau)
I am using ffmpeg 3.0, from that list, it seems that encoding with h264 is not supported, only decoding h264 is supported, right ?
I tried to enable h.264 with this guide
How to quickly compile FFmpeg with libx264 (x264, H.264)./configure --enable-gpl --enable-libx264
bu I get
./configure —enable-gpl —enable-libx264ERROR: libx264 not found
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solve the problem.what should I do to make encode video in h.264 work ?