Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6315)

  • audio player jwplayer wma files failes with error - Task Queue failed at step 5

    17 mars 2018, par Sabeena

    i have a jw player which plays mp3 files but wma files it gives the error "Task Queue failed at step 5 : Playlist could not be loaded : Playlist file did not contain a valid playlist"

    i thought of two reasons
    1. there is no support for wma but please confirm me this.
    2. somewhere i need to setup the type of file i am using in this player.

    if wma not supported in jwplayer how can play wma and mp3 files in my website ?

    is it ffmpeg needed to convert wma to mp3 while uploading ?

  • Multiple files in JW Player 6 not working

    18 octobre 2013, par Dvex

    Use version 6 JW Player. I'm transforming my videos using FFMPEG to MP4, FLV and WebM.

    When the videos are intended to be played, it does not and I have the following error :

    Error playing media:
    MediaError
    code: 4
    __proto__: MediaError
    MEDIA_ERR_ABORTED: 1
    MEDIA_ERR_DECODE: 3
    MEDIA_ERR_ENCRYPTED: 5
    MEDIA_ERR_NETWORK: 2
    MEDIA_ERR_SRC_NOT_SUPPORTED: 4
    constructor: function MediaError() { [native code] }
    __proto__: Object
    jwplayer.js?muokxc:4
    CAPTIONS([object Object]) jwplayer.js?muokxc:4
    CAPTIONS([object Object])

    In Firefox I have the error : "The file can not be decoded".
    This scenario only happens on my server. But on localhost, does not happen. The videos can be played normally.

    What is it that is happening ?

    My JS code to initialize the JW Player is :

    jwplayer('jwplayerjw-player').setup({
    "aspectratio":"16:9",
    "playlist":[{
    "image":"http://mydomain.com/system/files/videos/thumbnails/48/thumbnail-48_0002.png",
    "sources":[{
    "file":"http://mydomain.com/system/files/videos/converted/48/loop_2_flv_1381794678.flv"},
    {"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_mp4_1381794691.mp4"},
    {"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_webm_1381794705.webm"}]}],
    "width":"100%",
    "height":360,
    "stretching":"fill",
    "skin":"sites/all/libraries/jwplayer/skin.xml"
    });
  • Streaming opencv mat to flash player

    8 mai 2016, par Puneet Jain

    I am looking for a way to programmatically stream opencv frames to a flash player (using RTMP). I am running nginx at the backend.

    So far, I am able to find a way to stream flv file sitting on disk to flash player (note again programmatically) : https://github.com/Akagi201/rtmp-push

    I am also able to encode cv::Mat to AVFrame using libavcodec but I am not sure how can I encode push into RTMPPacket. Basically, I am not sure what should be the content of Data field of FLV tags.
    Refer :https://www.adobe.com/content/dam/Adobe/en/devnet/flv/pdfs/video_file_format_spec_v10.pdf

    Does anyone know how bgr content of cv::Mat be converted to AVCVIDEOPACKET, explained on the above link ?