
Recherche avancée
Médias (1)
-
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
Autres articles (27)
-
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4828)
-
Revision 4aa2d593520b162518e3bef7fc6eaeff1e4d8f0d : #FORMULAIRE_CONFIGURER_PREVISUALEUR remplace configuration/previsualiseur ...
4 octobre 2010, par Cerdic — Log#FORMULAIRE_CONFIGURER_PREVISUALEUR remplace configuration/previsualiseur l’icone qui etait utilisee est reformatee en 24x24 au lieu de 26x20 et renomee preview-24.png git-svn-id : svn ://trac.rezo.net/spip/spip@16391 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d
-
C++ pointer to pointer of array
20 août 2021, par user3807476how to pass array to this function ?


this is the function :


void fire(const uint8_t *const s[])
{
cout<<*s<code>


and I want to pass this array to that :


unsigned char X[10] = {255,255,255,255};



it is done by this and it works


unsigned char X[5] = {255,255,255,255};
unsigned char *pointertoX ;
pointertoX = X;
fire(&pointertoX);



why I need *pointertoX ?
is there any other way for do this ?


whole code :


#include <iostream>
using namespace std;


void fire(const uint8_t *const s[])
{
cout<<*s<code></iostream>


note : I'm trying to pass bitmap to ffmpeg "sws_scale" ..


https://ffmpeg.org/doxygen/4.1/group__libsws.html#gae531c9754c9205d90ad6800015046d74


-
Compiling live555 and ffmpeg with Xcode 5
24 janvier 2014, par KaiIn my current project we need to use both live555 and ffmpeg libraries in the same project. We are able to build and run sample for both projects without issues, but when merging both projects into the project the following compiler errors were encountered :
Undefined symbols for architecture armv7:
"av_free_packet(AVPacket*)", referenced from:
-[MyRtspClient readFFmpegAudioFrameAndDecode] in MyRtspClient.o
"av_read_frame(AVFormatContext*, AVPacket*)", referenced from:
-[MyRtspClient readFFmpegAudioFrameAndDecode] in MyRtspClient.o
"av_strerror(int, char*, unsigned long)", referenced from:
-[MyRtspClient readFFmpegAudioFrameAndDecode] in MyRtspClient.o
"av_dict_set(AVDictionary**, char const*, char const*, int)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_init_packet(AVPacket*)", referenced from:
-[MyRtspClient readFFmpegAudioFrameAndDecode] in MyRtspClient.o
"avcodec_register_all()", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_register_all()", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_log_set_level(int)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_log(void*, int, char const*, ...)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avformat_alloc_context()", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avformat_network_deinit()", referenced from:
-[MyRtspClient destroyFFmpegAudioStream] in MyRtspClient.o
"avformat_open_input(AVFormatContext**, char const*, AVInputFormat*, AVDictionary**)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avformat_find_stream_info(AVFormatContext*, AVDictionary**)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_find_best_stream(AVFormatContext*, AVMediaType, int, int, AVCodec**, int)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_dump_format(AVFormatContext*, int, char const*, int)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avcodec_open2(AVCodecContext*, AVCodec const*, AVDictionary**)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avformat_network_init()", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"av_dict_free(AVDictionary**)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
"avcodec_find_decoder(AVCodecID)", referenced from:
-[MyRtspClient initFFmpegAudioStream] in MyRtspClient.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)I should have included all the required files so I am a bit dumbfounded by this, any suggestion is welcome, thanks.