
Recherche avancée
Autres articles (47)
-
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (7866)
-
deprecated error calling C function in C virtual function
25 juillet 2013, par wolfzwhen i call C function use : : operation in C++ virtual function,
it always occurs the error as follows.D:/player/jni/lib/DllAvCodec.h:119:120: warning: 'avcodec_encode_audio' is deprecated [-Wdeprecated-declarations]
virtual int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples) { return ::avcodec_encode_audio(avctx, buf, buf_size, samples); }
^and that i called the extern "C" in the head, but the error still occur.
my code is :extern "C" {
#include <libavcodec></libavcodec>avcodec.h>
}
......
virtual int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples) { return ::avcodec_encode_audio(avctx, buf, buf_size, samples); }
...... -
How to merge audio video file in mac system using action script ?
18 avril 2017, par SushilKI am creating a screen recording application using action script. I am able to record the screen and audio files separately but the issue i am facing is that i am not able to merge these audio and video files in Mac.
For windows version i have used the ffmpeg and it is working fine But for Mac system it is not working. Do you guys have any other suggestions or any way to run the ffmpeg from the action script directly for Mac ?
-
Terminating a c function
17 février 2014, par dempapI want to make a function in c, that will capture video under Linux. I embedded
ffmpeg
command viasystem()
in my c program, which captures video.ffmpeg
terminates by pressing [q]. How can I include termination into my c program.This function is part of a server.c program. When client requests for termination, I want video cature function to terminate. Is this possible ?
#include
#include
main()
{
char command[180];
sprintf(command, "ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 out.avi");
system(command);
}