
Recherche avancée
Autres articles (33)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5480)
-
diracdec : fix original Dirac Low Delay profile
21 janvier 2016, par Rostislav Pehlivanovdiracdec : fix original Dirac Low Delay profile
The version structure in the main decoder context was not (and
apparently has never been) populated since it was added.
Still, having VC-2 break the existing Dirac Low Delay mode was odd and
easily avoidable had the specifications authors noticed/cared.Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>
-
hevc : set profile based on the profile compatibility flags if needed
30 janvier 2016, par Hendrik Leppkes -
How to encode audio to AAC with profile FF_PROFILE_AAC_LOW
18 mai 2016, par alijandroI try to encode audio to AAC with profile
FF_PROFILE_AAC_LOW
by the following settings.oc_cxt->profile = FF_PROFILE_AAC_LOW;
Also from the output of
av_dump_format
, I got thisMetadata:
encoder : Lavf57.36.100
Stream #0:0: Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 192 kb/sBut the output is different. Everything is ok, except the output is
AAC
, notAAC (LC)
. By usingffprobe
to detect, the output information is$ ffprobe o.m4a
...
Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 195 kb/s (default)
...AAC (LC)
is the desired result I need.But from the command line,
ffmpeg
can generateAAC (LC)
output. Below is a small test.$ ffmpeg -f lavfi -i aevalsrc="sin(440*2*PI*t):d=5" aevalsrc.m4a
$ ffprobe aevalsrc.m4a
...
Stream #0:0(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 69 kb/s (default)
...How can I select
FF_PROFILE_LOW
to getAAC (LC)
output ?