Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (40)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (7429)

  • avcodec : Remove libaacplus

    24 janvier 2016, par Timothy Gu
    avcodec : Remove libaacplus
    

    TODO : bump minor

    It’s inferior in quality to fdk-aac and has an arguably more problematic
    license.

    As early as 2012, a HydrogenAudio user reported :

    > It has however one huge advantage : much better quality at low bitrates than
    > faac and libaacplus.

    (https://hydrogenaud.io/index.php?PHPSESSID=ckiq394pdglka0kj2fin6ij8t7&topic=95989.msg804633#msg804633)

    I myself have made a few spectrograms for a comparison of the two
    encoders as well. The FDK output is consistently better than the
    libaacplus one, in all bitrates I tested.

    libaacplus license is 3GPP + LGPLv2. 3GPP copyright notice is completely
    proprietory, as follows :

    > No part may be reproduced except as authorized by written permission.
    >
    > The copyright and the foregoing restriction extend to reproduction in
    > all media.
    >
    > © 2008, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC).
    >
    > All rights reserved.

    (The latest 26410-d00 zip from 3GPP has the same notice, but the copyright
    year is changed to 2015)

    The copyright part of the FDK AAC license (section 2) is a copyleft
    license that permits redistribution under certain conditions (and
    therefore the LGPL + libfdk-aac combination is not prohibited by
    configure) :

    > Redistribution and use in source and binary forms, with or without
    > modification, are permitted without payment of copyright license fees
    > provided that you satisfy the following conditions :
    >
    > You must retain the complete text of this software license in
    > redistributions of the FDK AAC Codec or your modifications thereto in
    > source code form.
    >
    > You must retain the complete text of this software license in the
    > documentation and/or other materials provided with redistributions of
    > the FDK AAC Codec or your modifications thereto in binary form.
    >
    > You must make available free of charge copies of the complete source
    > code of the FDK AAC Codec and your modifications thereto to recipients
    > of copies in binary form.
    >
    > The name of Fraunhofer may not be used to endorse or promote products
    > derived from this library without prior written permission.
    >
    > You may not charge copyright license fees for anyone to use, copy or
    > distribute the FDK AAC Codec software or your modifications thereto.
    >
    > Your modified versions of the FDK AAC Codec must carry prominent
    > notices stating that you changed the software and the date of any
    > change. For modified versions of the FDK AAC Codec, the term
    > "Fraunhofer FDK AAC Codec Library for Android" must be replaced by the
    > term "Third-Party Modified Version of the Fraunhofer FDK AAC Codec
    > Library for Android."

    • [DH] Changelog
    • [DH] LICENSE.md
    • [DH] configure
    • [DH] doc/general.texi
    • [DH] doc/platform.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/libaacplus.c
  • Anomalie #3889 : Vignettes de documents erronées dans les résultats de recherche de l’espace privé

    18 janvier 2017, par b b

    Soyons précis, voici le squelette qui génère la liste de documents :

    https://zone.spip.org/trac/spip-zone/browser/_core_/branches/spip-3.1/plugins/medias/prive/objets/liste/documents.html#L25

    Comme tu peux le voir, celui-ci appelle [(#LOGO_DOCUMENT|image_reduire{20,26})] sur la boucle (DOCUMENTS) de recherche. La balise #LOGO appelle quete_logo_document() qui prend en priorité la vignette "du document". Donc, la première chose à faire serait de vérifier que tu n’as pas un id_vignette renseigné pour ces documents dans la base.

    Sur le screenshot joint il s’agit de pdf importés par le formulaire de contact

    Quel formulaire de contact ? Comment ce formulaire prend en charge les documents ? Reproduis-tu le bug pour des documents "classiques" ajoutées par SPIP (sinon, c’est bien que le bug vient de ton formulaire de contact perso).

    Bref, sans plus d’infos de ta part, ça va pas être facile de t’aider...

  • Gstreamer Pipeline mpeg2ts stream

    24 juillet 2017, par Antoine Duatip

    I’m new here and new on Gstreamer. I want to learn Gstreamer with easy things.
    I want to save the mpeg2ts/rtp/h264 (sends on the 5041 port) stream on a flv file without decoding encoding. In fact i want to replace this ffmpeg command by a pipeline gstreamer :

    ffmpeg -hide_banner -loglevel panic -y -i rtp://192.168.50.2:5041 -c copy toto.flv

    I confirm that this pipeline works for saving and compressing the stream, but I don’t want to compress it anymore, the charge is too important for my device (I can compress only 2 streams and i have 4 to record) :

    gst-launch-1.0 -e udpsrc port=5041 caps="application/x-rtp" ! queue ! rtpmp2tdepay ! aiurdemux streaming_latency=400 ! queue ! vpudec ! decodebin ! videorate ! video/x-raw,framerate=5/1 ! vpuenc_h264  bitrate=0 ! flvmux ! filesink location=toto.flv

    I tried few pipelines which seem good to me but the output file stays to 0B.
    I tried this pipeline :

    gst-launch-1.0 -e udpsrc port=5041 ! rtpmp2tdepay ! tsdemux  ! h264parse !  queue ! flvmux ! filesink location=toto.flv

    gst-launch-1.0 -e udpsrc port=5041 ! rtpmp2tdepay ! decodebin ! queue ! flvmux ! filesink location=toto.flv

    gst-launch-1.0 -e udpsrc port=5041 caps="application/x-rtp" ! rtpmp2tdepay ! aiurdemux ! queue ! h264parse ! queue ! flvmux ! filesink location=toto.flv

    thx you for your help.
    Best regards,