
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (72)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (4314)
-
Facing Segmentation fault When reading video using ffmpeg, because the address of "pFormatCtx-> streams [i]-> codecpar" is 0x00
27 février 2024, par andydyWhen reading real time video stream by using ffmpeg,
pFormatCtx-> streams [i]-> codecpar
is 0x00, butpFormatCtx-> streams [i]
is 0x55555579bbc0.
my source code is as below where error occurs in lineif (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)



//open media file
 if (avformat_open_input(&pFormatCtx, url, NULL, &avdic) != 0) {
 std::cout<<"can't open the file. \n";
 return;
 }

 //find the infomation of the stream
 if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
 std::cout<<"Could't find stream infomation.\n";
 return;
 }

 //find the parameters of the video stream
 int videoStream = -1;
 cout<nb_streams<nb_streams; i++) {
 if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
 videoStream = i;
 }
 }
 if (videoStream == -1) {
 std::cout<<"Didn't find a video stream.\n"<code>


-
avcodec/adpcm : Fix left shifts in AV_CODEC_ID_ADPCM_EA
27 septembre 2019, par Michael Niedermayeravcodec/adpcm : Fix left shifts in AV_CODEC_ID_ADPCM_EA
Fixes : left shift of negative value -1
Fixes : 17683/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_EA_R2_fuzzer-5111690013704192Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/vc1_block : Fix invalid left shift in vc1_decode_p_mb()
2 octobre 2019, par Michael Niedermayeravcodec/vc1_block : Fix invalid left shift in vc1_decode_p_mb()
Fixes : left shift of negative value -6
Fixes : 17810/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1_fuzzer-5638541240958976Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>