
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (81)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (10850)
-
avcodec/motion_est : Fix invalid left shift of negative numbers
26 mars 2021, par Andreas Rheinhardt -
avformat/mvi : Check audio_data_size to be non negative
10 avril 2021, par Michael Niedermayeravformat/mvi : Check audio_data_size to be non negative
Fixes : left shift of negative value -224
Fixes : 32144/clusterfuzz-testcase-minimized-ffmpeg_dem_MVI_fuzzer-4971479323246592Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
In python cv2, trying to use VideoCapture with a video that starts on a negative timestamp, won't fetch frames at the negative timestamp ?
18 juin 2021, par AntonIn python, if i get a video (that was clipped in way that shows a negative timestamp in a video player) (see example of problem here ffmpeg start_time is negative)


when trying to read that video through python opencv, I don't know how to get the frames starting from the negative timestamp. Instead what happens is first frame is the one at 0:00 timestamp, and when a video is read, a couple of frames get skipped at the beginning.
Code sample :


cap = cv2.VideoCapture("video_with_negative_timestamp.mp4")
print(int(cap.get(cv2.CAP_PROP_POS_FRAMES))) # == 0
print(cap.get(cv2.CAP_PROP_POS_MSEC)) # == 0.0, this is wrong, should be a negative value?
ret, frame = cap.read() # frame is not the first frame in the video.