
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (40)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (4089)
-
why have error install pulseaudio with libtool ?
15 juillet 2017, par langiacI am trying to install pulse audio but get the following error :
# ./configure
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking ltdl.h usability... no
checking ltdl.h presence... no
checking for ltdl.h... no
configure: error: Unable to find libltdl version 2. Makes sure you have libtool 2.2 or later installed.
# yum install libtool
Loaded plugins: refresh-packagekit
Setting up Install Process
Package libtool-2.2.6-11.fc11.1.i586 already installed and latest version
Nothing to doWhy is it not found if installed ?
Thank you for your kind help.
-
Content retreived from glacier vault , how to feed into ffmpeg or ffprobe ?
22 septembre 2021, par maddy23Wrote a python program to retreive the whole archive file from the glacier vault , from get_job_output.py


Further from the respobe body from get_job_output.py , loaded into a varible.


responese = vaultName='vualt_name',
 jobId='UBSW2BjtzM8i868SD97sVS972-Ifz2tVOOW2BjtzM8ifceipTvN-2RgDJG5JjWgIw1BZ9Bv_v9NJTg7OadEupjTFO',
)

content = respone['body'] --> which is an streamingbody 



further i need to feed the streambody cotent into ffmpeg cmd


ffprobe -i "content"



Above cmd returns :
TypeError : can only concatenate str (not "StreamingBody") to str


I dont want to use StreamingBody.read(response['body']) , which basically loads the whole file into RAM.
what are other ways to handle the streamingbody from respone and feed to other programs.
or is there a way to generate a http://link for the


-
Detect face in video file
24 juin 2017, par Yaswanth PushpakMy code is to detect face in a video, but the video is not being loaded even I have given the right path. Also, I installed ffmpeg but there are no .dll files in it.
Can anyone help ?
import cv2
import numpy as np
faceDetect=cv2.CascadeClassifier('C:\\OPENCV\\opencv\\sources\\data\\haarcascades\\haarcascade_frontalface_default.xml')
ret,cam=cv2.VideoCapture('D:\\New folder (5)\\New folder (3)\\Ae Dil Hai Mushkil.mp4')
img=cam.read()
while(cam.isOpened()):
ret,img=cam.read();
if not ret: break
gray=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
faces=faceDetect.detectMultiScale(gray,1.3,5);
`enter code here`for (x,y,w,h) in faces:
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),2)
cv2.imshow("Face",img);
if(cv2.waitKey(1) & 0xFF==ord('q')):
break;
cam.release()
cv2.destroyAllWindows()Error :
Traceback (most recent call last):
File "D:\New folder (5)\New folder (3)\facedet.py", line 5, in <module>
ret,cam=cv2.VideoCapture('D:\\New folder (5)\\New folder (3)\\Ae Dil Hai Mushkil.mp4')
TypeError: 'cv2.VideoCapture' object is not iterable
</module>