
Recherche avancée
Autres articles (53)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (7831)
-
How to Add Gstreamer Plugin on Mac when installed from Tutorials
31 juillet 2014, par Dave CollinsI basically have two installs of gstreamer on my Mac OS X machine :
The one that works perfectly was installed following this tutorial (http://docs.gstreamer.com/display/GstSDK/Installing+on+Mac+OS+X) and downloading and installing the Developer SDK and using XCode. All tutorials work well.I also have a local version installed with Homebrew but video playback does not work on that version (see SO : gstreamer gst-launch sample mac osx plays audio but not video)
SO, I’m trying to install the FFMPEG plugin into the working xcode dev system so that I can use FFDEC_H263 in a project.
I tried simply copying the related .SO files (e.g. libgstffmpg.so) from the homebrew (cellar) location to the
/Library/Frameworks/GStreamer.Framework/Versions/0.10/lib/gstreamer-0.10/
directory and changing permissions. However, that gives me a "Caught a segmentation fault while loading plugin file" error when building any code.
I also noticed that in the Xcode directory mentioned above, all of the plugins have a related .a and .la files in the \static subdirectory... Those same files don’t exist in the homebrew version.
So, what is the proper way to install a plugin when you’ve started with the developer SDK for Mac OSX ?
-
How to stream to the stream name come in response from Youtube livestream api
7 décembre 2018, par Anirudha GuptaI am calling this API https://developers.google.com/youtube/v3/live/docs/liveStreams/insert ? to get stream name from Livestream API
{
"kind": "youtube#liveStream",
"etag": "\"etag"",
"id": "-ABa1o",
"snippet": {
"publishedAt": "2018-12-07T05:41:12.000Z",
"channelId": "UC-
"title": "Hello World",
"description": "Snippet description of testing",
"isDefaultStream": false
},
"cdn": {
"format": "360p",
"ingestionType": "rtmp",
"ingestionInfo": {
"streamName": "9qq0-ct85-ctub-",
"ingestionAddress": "rtmp://a.rtmp.youtube.com/live2",
"backupIngestionAddress": "rtmp://b.rtmp.youtube.com/live2?backup=1"
},
"resolution": "360p",
"frameRate": "30fps"
},
"status": {
"streamStatus": "ready",
"healthStatus": {
"status": "noData"
}
},
"contentDetails": {
"closedCaptionsIngestionUrl": "http://upload.youtube.com/closedcaption?cid=9qq0-ct85-ctub-",
"isReusable": true
}
}I see a response like this, When I use OBS to stream to this RMTP URL it doesn’t have the title I set in the stream as you can see come in response. I am getting stream name but not sure if I do it correctly.
If I call the path as
rtmp://a.rtmp.youtube.com/live2/steamnamefromurl/mykey
it’s work but not have the title I set by call API. Anyone please check the page and help what I am going wrong. What I am looking for is get the title and description set for stream, or verified that I am doing it correctly. -
How to convert images to video with ffmpeg api not commands ?
6 juin 2018, par Liang SteveI’m trying to convert images(as jpg) to video(as mp4),
but looking up at the ffmpeg docs, I just found command lines as follow
ffmpeg -f image2 -i img%d.jpg /tmp/a.mpgDoes anyone know the api with c or c++ code ? Thanks.