
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (39)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (3558)
-
avformat/mov : rewrite aspect from matrix code
15 janvier 2015, par Michael Niedermayeravformat/mov : rewrite aspect from matrix code
The original code was intended purely for rotation == 0
In cf70ba37ba74089a18295b29e77dead0a3222c9e the condition was
changed to use it only for rotation != 0
which broke the cases for which it was intended to be used
as well as breaking cases for which it was not intended to be
used.
This changes the code so it could work for the more general
case and fixes the regressions
If you have sample files that are not handled correctly
please open tickets or mail me !Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
lavf/hls : replace the same code logic with ensure_playlist()
21 juillet 2019, par vacingfang -
can i use windows api function on ffmpeg code ?
6 septembre 2020, par sooyongchoiI'm trying recording video from camera and receive timestamp when frame received.
I want to extracting timestamp each frame on Windows.
And I'm trying use this ffmpeg commandline.
Sync files timestamp with ffmpeg


ffmpeg -f dshow -rtbufsize 1500M -video_size 1920x1080 -use_wallclock_as_timestamps 1 -copyts -r 60 -i video="0819-INOGENI 4K2USB3" -r 60 -vf setpts=PTS-STARTPTS -q 4 video4567.avi -c copy -f mkvtimestamp_v2 timings4567.txt


but I want to timestamp based on GetSystemTimePreciseAsFileTime function, not unix epoch time for much better sensitive timer.


So, I'm trying modifying to use GetSystemTimePreciseAsFileTime function mkvtimestamp_v2 code.
But it's error when make install processing.
like this : libavformat.a(mkvtimestamp_v2.o) : error LNK2019 : unresolved external symbol _GetSystemTimePreciseAsFileTime referenced in function _write_packet


It seems like no link win32 api from ffmpeg code.


Is there any way for linking win32 api for ffmpeg code ?


thanks :)