Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (35)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP 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 (4148)

  • How to Add Gstreamer Plugin on Mac when installed from Tutorials

    31 juillet 2014, par Dave Collins

    I 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 Gupta

    I 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 Steve

    I’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.mpg

    Does anyone know the api with c or c++ code ? Thanks.