
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11354)
-
Save the recording video chunk (Segment) into system
10 mars 2014, par user3156324I am recording the video using (Logitech) webcam, and after that store this recorded mp4 format video into the device. But if recording is going on and in the middle I directly turn off the device then the video is not get recorded means it is not saved into device. Means I think it is corrupted I am not sure about that but I think.
So I want to save the recording into the device with the video chunk when recording is going on. I don't want to save the recording into device after completion of recording. But I want to save the recording continuously when recording is going on.
I am using ubuntu system.
Please tell me how can I do this.
-
FFmpeg decode h.264 mp4 video and save it to desktop in any format
22 août 2016, par esadcelikBy following ffmpeg examples i realised they don’t provide an example that decodes h.264 and save it to desktop in any way. I can decode h.264 but i cannot save it to desktop. How can i do this ?
I can get this point but now how can i save it as a video ?
while (1) {
if ((ret = av_read_frame(fmt_ctx, &packet)) < 0)
break;
if (packet.stream_index == video_stream_index) {
got_frame = 0;
ret = avcodec_decode_video2(dec_ctx, frame, &got_frame, &packet);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error decoding video\n");
break;
}
if (got_frame) {
frame->pts = av_frame_get_best_effort_timestamp(frame);
.
.
.
.
.
.
.
}
av_frame_unref(frame);
}
}
av_packet_unref(&packet);
} -
ffmpeg cache whole video stream and save
19 juillet 2016, par LuizI have a security DVR that can stream a video recording using the RTSP protocol. I can record the playback using ffmpeg and save it to a file, but for a 20 min video, I have to watch the video to save or wait the whole playback time.
I’m using :ffmpeg -i "rtsp://mystream" -r 15 -acodec copy -vcodec copy myvideo.mp4
to do this
Is there any way to buffer the whole stream and just save it to a file using ffmpeg, without the need to watch or wait the whole 20 minutes playback ? I don’t need to reencode anything since the stream video format is good enough for me.
Thanks in advance