
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9721)
-
avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
7 avril 2024, par Andreas Rheinhardtavcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
It is perfectly legal for users to use a custom layout
that is equivalent to a supported native one.
In this case the union in AVChannelLayout is not an uint64_t mask,
but a pointer to a custom map.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Unrecognized option 'preset' with ubuntu 12.04 and ffmpeg
5 novembre 2013, par hyperrjasI have compiled ffmpeg with the guide How To Compile FFmpeg and x264 on Ubuntu.
Now I'm trying upload a .mp4 file to encode. However I get this error now :
ffmpeg version git-2013-11-05-934e489 Copyright (c) 2000-2013 the FFmpeg developers
built on Nov 5 2013 13:58:43 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --enable-gpl --enable-libass --enable-libfaac --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab --enable-nonfree --enable-version3
libavutil 52. 51.100 / 52. 51.100
libavcodec 55. 41.100 / 55. 41.100
libavformat 55. 21.100 / 55. 21.100
libavdevice 55. 5.100 / 55. 5.100
libavfilter 3. 90.101 / 3. 90.101
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
libpostproc 52. 3.100 / 52. 3.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
Errors: no output file created.This is the ruby methods to encode :
case format
when 'mp4'
h[:video_codec] = 'libx264'
h[:audio_codec] = 'libfaac'
h[:custom] = '-qscale 0 -preset slow -g 30'
when 'ogv'
h[:video_codec] = 'libtheora'
h[:audio_codec] = 'libvorbis'
h[:custom] = '-b 1500k -ab 160000 -g 30'
when 'webm'
h[:video_codec] = 'libvpx'
h[:audio_codec] = 'libvorbis'
h[:custom] = '-b 1500k -ab 160000 -f webm -g 30'
end -
Multiply the video with a scalar with FFMPEG
16 novembre 2020, par TerpsiphoneI have to adjust a video which was too dark. In openCV, I simply used
Img.Mul()
to multiply each of the RGB band with a same scalar and got good result.

Could one do the equivalent operation with FFMPEG ? I tried
eq
with contrast and brightness, but it was not quite the same thing.

Edit : thanks to a clue in @VC.One's answer below I was able to emulate
Img.Mul()
with :

ffmpeg -i input.file -vf colorlevels=rimax=0.5:gimax=0.5:bimax=0.5 -c:a copy output.file