Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (36)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

Sur d’autres sites (5011)

  • id3v2 : prefer TDRC for date over TDRL.

    4 novembre 2014, par Benoit Fouet
    id3v2 : prefer TDRC for date over TDRL.
    

    TDRL is what we used as a replacement of TYER, and, according to
    http://id3.org/id3v2.4.0-changes :
    TYER - Year
    This frame is replaced by the TDRC frame, ’Recording time’
    [F:4.2.5].
    So change TDRL usages to TDRC.

    Fixes ticket #3694

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/id3v2.c
    • [DH] libavformat/mp3enc.c
  • Anomalie #3315 (Nouveau) : Champs obligatoires non renseignés : afficher un message en haut de page

    24 octobre 2014, par Valéry -

    Pour les articles le seul champ obligatoire est le titre qui est affiché en haut de page. Il comporte en outre une valeur par défaut. En général le problème ne se pose donc pas.

    Mais si on utilise Champs Extra on peut ajouter de nouveaux champs obligatoires or ceux-ci sont affichés en bas de page.

    L’utilisateur peut donc valider son article sans les avoir renseignés et aucun message ne s’affiche : il faut scroller pour voir les messages sur les champs. C’est donc une source d’erreur (j’ai eu le cas de figure d’un utilisateur se plaignant que ses modifications sur les articles ne s’enregistraient pas).

    La solution serait donc d’afficher en haut de page d’édition des objets SPIP indiquant que un ou plusieurs champs obligatoires n’ont pas été renseignés.

  • Error in http dynamic streaming TypeError - Error #1009

    25 octobre 2014, par internetdoping

    I am making mutli-bitrate streaming in FMS and FFMPGE.
    In FFMPEG I create 4 bitrates of source video and publish it on the FMS through RTMP protocol (rtmp://my-server/livepkgr/mystreamName1?adbe-live-event=liveevent).

    Now all configurations are working currently but sometimes I get this error :
    1- TypeError - Error #1009

    This is my FFMPEG syntaxt to create multi-bitrate :

    ffmpeg -re -i j:\movie\warz.mkv
    -preset ultrafast -threads 1 -vcodec libx264 -b:v 720k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 856*360 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation720p?adbe-live-event=relation
    -preset ultrafast -threads 1 -vcodec libx264 -b:v 600k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 856*360 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation360p?adbe-live-event=relation
    -preset ultrafast -threads 1 -vcodec libx264 -b:v 350k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 570*240 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation240p?adbe-live-event=relation
    -preset ultrafast -threads 1 -vcodec libx264 -b:v 98k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 342*144 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation144p?adbe-live-event=relation
    -preset ultrafast -threads 1 -vcodec libx264 -b:v 98k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 342*144 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation98p?adbe-live-event=relation

    and this is my F4M file :

    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
    <dvrinfo beginoffset="0" endoffset="1800"></dvrinfo>
    <baseurl>http://12.11.1.2/hds-live/livepkgr/_definst_/relation</baseurl>
    <media href="relation360p.f4m" bitrate="600"></media>
    <media href="relation240p.f4m" bitrate="350"></media>
    <media href="relation144p.f4m" bitrate="128"></media>
    <media href="relation720p.f4m" bitrate="1932"></media>
    <media href="relation98p.f4m" bitrate="98"></media>
    </manifest>

    Please advise me to fix this problem.
    Any help will be appreciated.