
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (15305)
-
avformat/rtmpproto : send proper status for response to play command
14 avril 2022, par Marton Balint -
How to translate bgr data to CVPixelBufferRef ?or how to play just bgr data in iOS
4 décembre 2016, par warlockI have got some RGB data used live555 & FFmpeg, but how can I play it as a video ?
I Google a lot and found that avplayer maybe help. Others I searched link me to
UIImage
translate to rgb...or your search returned no matches.This is one I searched, but it is "Create ", not "Play ".
possible to create a video file from RGB frames using AV Foundation
I try to use AVsampleBufferDisplayLayer, but I don’t know how to translate.
Anyone can help ?
-
OpenCV CUDA VideoReader RTSP video play UNSUPPORTED Format Issue
17 octobre 2018, par oktykrkI am trying to play an rtsp stream with OpenCV 3.4 built with CUDA 9.1 in C++. I have enabled FFMPEG flag while building OpenCV, however getting OpenCV error like :
OpenCV Error: Unsupported format or combination of formats (Unsupported video source) in cv::cudacodec::detail::FFmpegVideoSource::FFmpegVideoSource, file C:\opencv-3.4.0\modules\cudacodec\src\ffmpeg_video_source.cpp, line 110
here is the code :
const cv::String fname = "rtsp://admin:admin@192.168.2.46/media/video1";
cv::namedWindow("GPU", cv::WINDOW_NORMAL);
cv::cuda::GpuMat d_frame;
cv::Ptr d_reader = cv::cudacodec::createVideoReader(fname);
for (;;)
{
if (!d_reader->nextFrame(d_frame))
break;
cv::Mat frame;
d_frame.download(frame);
cv::imshow("GPU", frame);
if (cv::waitKey(3) > 0)
break;
}I can play the video with the same source with CPU but getting this error with
cudacodec
interfacecreateVideoReader
function.Getting the error below when debug.
Can anybody help with this. Thank you all.