
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (50)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (9007)
-
Open letter to the European Parliament’s LIBE committee
28 novembre 2019, par Joselyn Khor — Uncategorized -
avformat_open_input cannot open a file with raw opus audio data
4 novembre 2020, par bbddI have a problem when trying to open a binary file containing raw audio data in
opus
format. When I try to open this file, the library returns an error : Unknown input format :opus
.

How can I open this file ?


I need to open it and write all the raw audio data to an audio container. I understand that the
opus
format is intended only forencoding
. I realized this using command :

$ ffmpeg -formats | grep Opus

ffmpeg version 3.4.4 Copyright (c) 2000-2018 the FFmpeg developers
 E opus Ogg Opus # For only encoding



Then what format should I use to open this file ? With
ogg
? I tried, but there are also problems with opening the outgoing file. I provide the code that shows only the necessary part to open the file :

int main(int argc, char *argv[])
{
 // ...

 av_register_all();

 AVFormatContext *iFrmCtx = nullptr;
 AVFormatContext *oFrmCtx = nullptr;
 AVPacket packet;

 const char *iFilename = "opus.bin"; // Raw audio data with `opus` format
 const char *oFilename = "opus.mka"; // Audio file with `opus` audio format

 AVDictionary* frmOpts = nullptr;
 const qint32 smpRateErrorCode = av_dict_set_int(&frmOpts, "sample_rate", 8000, 0);
 const qint32 bitRateErrorCode = av_dict_set_int(&frmOpts, "bit_rate", 64000, 0);
 const qint32 channelErrorCode = av_dict_set_int(&frmOpts, "channels", 2, 0);
 if (smpRateErrorCode < 0 ||
 bitRateErrorCode < 0 ||
 channelErrorCode < 0) {
 return EXIT_FAILURE;
 }

 AVInputFormat *iFrm = av_find_input_format("opus"); // Error: Unknown input format
 if (iFrm == nullptr) {
 av_dict_free(&frmOpts);
 return EXIT_FAILURE;
 }

 qint32 ret = 0;
 if ((ret = avformat_open_input(&iFrmCtx, iFilename, iFrm, &frmOpts)) < 0) {
 av_dict_free(&frmOpts);
 return EXIT_FAILURE;
 }

 // We're doing something...
}



-
avformat/urldecode : add the ability to not decode plus sign to space
4 février 2020, par Marton Balint