
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (6053)
-
python module ffpyplayer showing or displaying video frames to screen
19 octobre 2016, par user2305443Using python module ffpyplayer, How can I see the frames or get the img object to display or show the video image/frames to the screen ?, in the tutorial that I followed, it seems very simple, it reads the frames and plays oudio but (does not display) any video image or frame to the screen, only if I add the (print img, t) will print the frame info to the screen but not video image is displayed on the screen.
I being following tutorials from : https://pypi.python.org/pypi/ffpyplayer, and here : http://matham.github.io/ffpyplayer/player.html, and searched google but the only relevant results point to the same info, I am somewhat new to programming and python, and so maybe I am missing something that seems to be very simple but I can’t figure it out myself.
I am using : windows 7 64bit, python 2.7.11 32bit.
Any Help will be appreciated thank you very much.
from ffpyplayer.player import MediaPlayer
vid = 'test_video.flv'
player = MediaPlayer(vid)
val = ''
while val != 'eof':
frame, val = player.get_frame()
if val != 'eof' and frame is not None:
img, t = frame
print img, t #This prints the image object
# display img #This does nothing! -
opencv_ffmpeg module crash (IP Camera)
25 novembre 2016, par Suraksha AjithI’m using IP webcam android app(It converts mobile camera into IP web camera).
I’m running below code in Visual Studio 2015 with OpenCV 3.1.VideoCapture cap; Mat img;
cap.open("http://192.168.0.101:8080/video?x.mjpeg");
while(waitKey(33)!=27)
{
try{
cap>>img; //code crashes here
if(img.empty())
{
cout<<"camera Closed"<code>Getting below error.cIf the internet connection is slow or if the Wi-Fi is disconnected in my android device the program crashes
Error :Exception thrown at 0x0BF2F6F0 (opencv_ffmpeg310.dll) in test.exe :
0xC0000005 : Access violation reading location 0x00000020.If there is a handler for this exception, the program may be safely
continued.even if the code is wrapped within try catch block, it crashes !
Should I use try {} catch (...) block in source file, if yes, then where should I use this ?
I referred this link but did not find the right answer. -
Getting ffprobe or avprobe not found while using youtube_dl module
26 décembre 2016, par Avinashimport youtube_dl
options = {
'format':'bestaudio/best',
'extractaudio':True,
'audioformat': 'mp3',
'outtmpl':'%(id)s.%(ext)s',
'noplaylist':True,
'nocheckcertificate':True,
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(options) as ydl:
ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])I am Getting
"youtube_dl.utils.DownloadError : ERROR : ffprobe or avprobe not found.
Please install one."I downloaded ffmpeg and tried giving its bin folder location in path variable . I also tried copying that bin folder to my youtube_dl package folder. None of them worked.
Thanks in advance.