
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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" ; -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (4464)
-
Recording video in C#
31 juillet 2014, par pfedotovskyI have to do the following : record video from camera using C#. Camera I use produces video frames (framerate is not fixed) and I have to somehow put all the frames together and create video file. Also I need to use different codecs such as AVI or MPEG4 (these codecs are required, others are optional).
The main problem I faced is how to create video in which framerate is not fixed. I have a stream of frames, for example I can recive the first frame after 1ms, then after 20ms, then 36ms and so on. If I create video with 25 frames/second the result will be wrong because it means that frames are added after 40ms.
I tried to use Aforge.Video library, it has a method http://www.aforgenet.com/framework/docs/html/84a560df-bfd5-e0d6-2812-f810b56a254d.htm which adds a frame according to timespan. But this method has problems with setting bitrate - the bitrate value I pass to the method simply ignored (http://www.aforgenet.com/forum/viewtopic.php?f=2&t=2665).
So my questions is : is there some C# library which I can use to video recording ? I have to support AVI and MPEG4, also possibility to set bitrate and the last but not the least - record video with variable framerate.
Thanks in advance. Any suggestions would be very helpful.
UPD1 : I can’t connect to camera directly - all I have is a stream of frames and I need to convert this stream to video at run-time.
UPD2 : A library I’m looking for should satisfy the following properties. It has to contain a method (or some way how to do the same) to add next frame with a timestamp just like in Aforge.Video.FFMPEG :
public void WriteVideoFrame(Bitmap frame, TimeSpan timestamp)
And it should be possible to choose different codecs (at least AVI and MPEG4) and also to set bitrate.
Is there some alternatives to Aforge.Video.FFMPEG ? Because Aforge doesn’t work properly - the bitrate value is ignored, also some codecs are not supported (MPEG2 for example).UPD3 : One more questions about codec license. If I use open source library, should I worry about the codec license ?
-
Script for muxing audio and video files with same name using FFmpeg
26 juillet 2024, par MadamadamI have a folder that contains audio and video files named like file001.wav and file001.mp4 and i want them to be muxed automatically. I've found a script for windows, but do not know how to alter it for OS X/Linux. Could someone help ?
Here's the windows script :



for %%a in ("*.mp4") do ffmpeg -i "%%~na.wav" -i "%%~na.mp4" -acodec copy -vcodec copy "newfiles\%%~na.mp4"



-
RTSP Client for H264 Audio/Video Stream
9 février, par Jean-Philippe EncausseI'm looking for a simple way to get data of an IP Camera RTSP Stream (using H264 Audio/Video) and get on the other side



- 

- a frame by frame byte[]
- a stream of the audio







After many research



- 

- EmguCV Capture seems hanging forever (no answer from forum)
- There is many (too big) RTSP Server few decode H264
- There is "slow" ffmpeg wrapper
- There is some managed DirectShow wrapper











So I don't know where to go ? And how to do this ?



It seems iSpyCamera is doing the job but it's a big project not a little library to query ip cameras.