
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 (83)
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5154)
-
How to add a cover image to mp4 file using FFMPEG ?
27 janvier 2019, par IremadzeArchil19910311I need to know how to assign cover image to mp4 file using FFMPEG ?
Especially if you really need to understand ? Let me explain :When I am trying to navigate a mp4 video file using windows explorer
and navigation option is set toView -> Large icons or
View -> Extra large iconsIt allows me to see a picture or an image.
But in most cases this image is a middle frame of mp4 video file.
If you will play this mp4 video file and if you will go to middle frame you will see the exact image shown on explorer !But I need to know how to see a cover image during explorer navigation instead of this middle frame image ?
So which FFMPEG commands can help me to add an cover image to mp4 video file ? -
Is there a way to tell ffmpeg mpdecimate to only evaluate a specific part of the frame ?
27 novembre 2020, par CrosswordPuzzlzI have a 60 FPS screen recording of a significantly slower, variable frame rate, video. It is supposed to, however, be constant frame rate.


Fortunately, frame numbers are present in a fixed area of the screen. Within that area, the only time anything changes is when the frame number changes.


(There are sometimes changes between frames - in other parts of the frame - that I would like mpdecimate to ignore. Those changes, however, never appear in the frame count zone.)


Is there a way that I can tell mpdecimate to only evaluate that small 'frame counting' portion of the frame in determining whether sequential frames are duplicates ?


Thank you.


-
opencv and ffmpeg multipart avi files > 2GB
8 février 2016, par jlarschIs there a way OpenCV can read large (>2GB) .avi video files ?
I am using openCV 3.0 and python 2.7 on Windows 7 64 bit.
I have mpeg4 compressed .avi files, often > 2GB. These are created using ffmpeg.
Such files read fine up to some point using the following commands :import cv2
#avi_path is full path to avi
cap = cv2.VideoCapture(avi_path)
img1=cap.read()but at some frame number, read() returns ’false’
Using Gspot, I found that such problematic videos are ’Multipart OpenDML AVI’ and read() seems to only be able to read the first part. Doing some google searches, it seems other people are having similar issues but no obvious solution.
apparently, openCV VideoWriter is also limited to 2 GB videos :
openCV documentation
Is the limitation in VideoCapture by design also ?Is there a workaround perhaps to read large video files ?
Alternatively, can I avoid creating multipart avi files in ffmpeg ?