
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (31)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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" ; -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (3662)
-
Added the HTML5 download attribute to the file download links.
13 février 2012, par Sebastian Tschanm index.html m test/index.html Added the HTML5 download attribute to the file download links.
-
Remove obsolete and streamline code due to the new redirect option and the HTML5 download attribute for the file download links.
13 février 2012, par Sebastian Tschanm js/main.js Remove obsolete and streamline code due to the new redirect option and the HTML5 download attribute for the file download links.
-
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.