Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (83)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (10049)

  • 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.

  • 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 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 ?