
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (44)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (5499)
-
How create synth with FFMPG ?
1er novembre 2022, par SebI am looking for the creation of a synth (synthé in french) with FFMPEG. For more explanation, a synth is a rectangle on a movie, where you can write text. In France, we had a very good science program on TV which have an example of the synth I'd like : https://www.youtube.com/watch?v=HR7HojWY-kg from 11:50 to 11:54 where it is written "Dr Luc DE HARO". As this example, I'd like to add on the left a image. I am looking for weeks to do that but I can't realise this synth. Could you help me please ?


-
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.