
Recherche avancée
Autres articles (64)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (7148)
-
To change the audio of the running live video
5 mars 2013, par Tushar SharmaI want to change the audio of the running video in my application. For example, when I open my application it contain camera screen. Now I want that I can see the video that I am watching from the camera but the audio get changed.
-
How do I use ffmpeg with live streaming from an IP camera [closed]
28 février 2013, par Murali HariharanMy question is very basic because I am a newbie to all these
technologies.I have an IP camera connected to my internal network.
http://192.168.1.20/videostream.cgi?user=admin&pwd=
...gives a live streaming view in Firefox or Internet Explorer.
Now I want to record the live stream into a video.
The parameters to be supplied are
begin_time
,end_time
,format
of video etc.How do I accomplish this ?
I appreciate any guidance.
-
iPhone camera live steaming
15 juin 2012, par Inder Kumar RathoreI have downloaded ffmpeg lib file and complied it for armv7. I added ffmpeg lib files in my project successfully. i am able to get iphone camera live streams using AVFoundation.
Now the problem is how will i convert iphone camera streams output as a input of ffmpeg for decode ? Check my code
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
CMBlockBufferRef bufferData = CMSampleBufferGetDataBuffer(sampleBuffer);
size_t lengthAtOffset;
size_t totalLength; char* data;if(CMBlockBufferGetDataPointer(bufferData, 0, &lengthAtOffset, &totalLength, &data ) != noErr )
NSLog(@"error !") ;
Kindly suggested me which function of ffmpeg lib is used for decoding and how will i put
CMBlockBufferRef
as a input of this ??Thanks