
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (8914)
-
Revision 3611 : Ne pas planter bêtement si on n’a pas la table journals
17 juin 2010, par kent1 — LogNe pas planter bêtement si on n’a pas la table journals
-
Read sample encrypted AAC with FFmpeg
25 novembre 2024, par rdrmntnI'm trying to open a sample encrypted AAC file (packed audio) using FFmpeg APIs.


I can open an unencrypted AAC file using


AVFormatContext* iContext = nullptr;
 avformat_open_input(&iContext, mediaFileName.c_str(), nullptr, nullptr);



I'm also able to open a sample encrypted fmp4 segment using


AVDictionary *options = nullptr;
 av_dict_set(&options, "decryption_key", ssKey.str().c_str(), 0);
 AVFormatContext* iContext = nullptr;
 int ret = avformat_open_input(&iContext, mediaFileName.c_str(), nullptr, &options);



But when trying to open a sample encrypted AAC file I find no way to set the decryption key. When using code snippet above,
decryption_key
option is not consumed by the demuxer which, according to documentation, means that it is not recognized by the aac demuxer.

An HLS asset with sample encrypted AAC audio track is playable in ffplay so it should be possible to open the format. Anyone has any pointers on how ?


-
avcodec/webp : Return directly when creating Huff table fails
22 octobre 2020, par Andreas Rheinhardt