
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (54)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)
Sur d’autres sites (3004)
-
How can I seek to frame No. X with ffmpeg ?
27 août 2018, par GiumoI’m writing a video editor, and I need to seek to exact frame, knowing the frame number.
Other posts on stackoverflow told me that ffmpeg may give me a few broken frames after seeking, which is not a problem for playback but a big problem for video editors.
And I need to seek by frame number, not by time, which will become inaccurate when converted to frame number.
I’ve read dranger’s tuts (which is outdated now), and end up with :
av_seek_frame(fmt_ctx, video_stream_id, frame, AVSEEK_FLAG_ANY);
It always seek to frame
No. 0
, and alwaysreturn 0
which means success.
Then I tried to read Blender’s source code and found it really complex(maybe I should implement an image buffer ?).So, is there any simple way to seek to a frame with just a simple call like
seek(context, frame_number)
(while getting a full frame, not a broken one) ? Or, is there any lightweight library that simplifies this ?EDIT :
Thanks to praks411,I found the solution :void AV_seek(AV * av, size_t frame)
{
int frame_delta = frame - av->frame_id;
if (frame_delta < 0 || frame_delta > 5)
av_seek_frame(av->fmt_ctx, av->video_stream_id,
frame, AVSEEK_FLAG_BACKWARD);
while (av->frame_id != frame)
AV_read_frame(av);
}
void AV_read_frame(AV * av)
{
AVPacket packet;
int frame_done;
while (av_read_frame(av->fmt_ctx, &packet) >= 0) {
if (packet.stream_index == av->video_stream_id) {
avcodec_decode_video2(av->codec_ctx, av->frame, &frame_done, &packet);
if (frame_done) {
...
av->frame_id = packet.dts;
av_free_packet(&packet);
return;
}
}
av_free_packet(&packet);
}
}EDIT2 :
Turns out there is a library for this : FFMS2.
It is "an FFmpeg based source library [...] for easy frame accurate access", and is portable (at least across Windows and Linux). -
Recording ip camera stream writing video file [closed]
10 décembre 2020, par MarcWe are implementing a camera surveillance system project using python with openCV/ffmpeg and Cuda based on client-server architecture, this system should hold up to 40-60 IP cameras for live, record and playback features.


The problem is that their is delay in live view between our program and the web page of the camera and problem in writing frames into video files(recording).


Does the problem due to the used language or a hardware issue, and does python represents the efficient language for this type of projects ?


-
ffmpeg No NVENC capable devices found if run on multiple GPUs [duplicate]
25 octobre 2017, par Marco PardoThis question is an exact duplicate of :
i have 4 Geforce 1060 GPUs and a running ffmpeg with cuvid on ubuntu server.
If i run this :
/bin/ffmpeg -hwaccel cuvid -i 0.mkv -c:v hevc_nvenc -profile:v main -rc vbr_hq -qmin 18 -qmax 24 -b:v 1000k -maxrate 3000k -preset slow -rc-lookahead 32 -g 250 -c:a copy -c:s copy -map 0 -gpu 0 out0.mkv null
(notice -gpu 0) it works like a charm. I can run 2 conversions at once (on differend GPUs) :
/bin/ffmpeg -hwaccel cuvid -i 1.mkv -c:v hevc_nvenc -profile:v main -rc vbr_hq -qmin 18 -qmax 24 -b:v 1000k -maxrate 3000k -preset slow -rc-lookahead 32 -g 250 -c:a copy -c:s copy -map 0 -gpu 1 out1.mkv null
/bin/ffmpeg -hwaccel cuvid -i 2.mkv -c:v hevc_nvenc -profile:v main -rc vbr_hq -qmin 18 -qmax 24 -b:v 1000k -maxrate 3000k -preset slow -rc-lookahead 32 -g 250 -c:a copy -c:s copy -map 0 -gpu 2 out2.mkv nullall of this works perfectly and i see via nvidia-smi that the processes use the named GPUs.
But if i run all three commands together the first two started normal and the third creashed with :
# [hevc_nvenc @ 0x5601103ca560] OpenEncodeSessionEx failed: out of memory (10)
# [hevc_nvenc @ 0x5601103ca560] No NVENC capable devices
# found Error initializing output stream 0:0 -- Error while opening
# encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or heightThe memory (on GPUs and system) is more than enough !
can anyone help me by this ?