
Recherche avancée
Autres articles (14)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (3534)
-
Reading avfoundation video device using FFMPEG library
22 juin 2015, par NipunI want to capture the screen on mac machine and dump into a file.
ffmpeg -f avfoundation -i "1" -f mpeg1video screendump.mp4
So I would like to achieve the same using programming in C/C++ using ffmpeg library.
How do I receive the stream in a C/C++ program using FFMPEG library ?
How do I write the received video into a file ?
-
Reading geolocation data from a video file using FFMpeg/Xuggler
23 décembre 2015, par agent154Using the MediaInfo application, I am able to see that a file taken with an iPhone 5 contains geolocation metadata, tagged both with ©xyz and com.apple.quicktime.location.ISO6709. I am not able to find any way to get this data using xuggler, however.
Format : MPEG-4
Format profile : QuickTime
Codec ID : qt 0000.00 (qt )
File size : 7.50 MiB
Duration : 3s 537ms
Overall bit rate : 17.8 Mbps
Recorded date : 2015-12-17T14:32:23-0330
Encoded date : UTC 2015-12-17 18:02:23
Tagged date : UTC 2015-12-17 18:02:27
Writing application : 8.4.1
Writing library : Apple QuickTime
Model : iPhone 5
©xyz : +47.5184-052.8046+133.390/
Make : Apple
com.apple.quicktime.make : Apple
com.apple.quicktime.creationdate : 2015-12-17T14:32:23-0330
com.apple.quicktime.location.ISO6709 : +47.5184-052.8046+133.390/
com.apple.quicktime.software : 8.4.1
com.apple.quicktime.model : iPhone 5As an aside, there seems to be a lot of metadata on this file that I can’t immediately find while debugging via xuggler.
The question at Reading Geolocation from Quicktime Movies with Java (Xuggler) ? is asking the exact same question, but has no answers or comments at all, and is over 4 years old.
Is anybody aware of a way to be able to get this data using xuggler as it is, or how I can modify the source and re-compile to make it work ? I am required to get this data for a work project. Thanks.
-
Reading a UDP stream by ffmpeg libavcodec
9 janvier 2014, par Blue SkyI want to read a video stream using ffmpeg libavcodec from a UDP address like udp ://:1500. I am using this code :
char *url = "udp://:1500";
char *format = "mpegts";
AVInputFormat *fmt = NULL;
AVFormatContext *oc = NULL;
int res;
fmt = av_find_input_format(format);
res = avformat_open_input(&oc, url, fmt , NULL);
if(res!=0){
printf("Could not open the stream\n");
exit(1);
}But when I run this code, the program halts forever after executing res = avformat_open_input(&oc, url, fmt , NULL) ;
Do you know what is the problem ?