Recherche avancée

Médias (91)

Autres articles (98)

  • 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 à (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6172)

  • FFMPEG Video Encode Single Input Multi Output

    1er août 2014, par ShyamKG

    I have a custom video encoder filter which can produce upto 5 different bitrates for the same resolution.

    Note that single instance of the encoder is optimized for producing these multiple outputs. Every encode call returns 5 output buffers.
    This means that I would not want to run more than one encoder instance.

    I need to integrate this encoder to FFMPEG which should give multiple outputs for a single input. I have referred the following link regarding creating multiple outputs.
    https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    In this link multiple outputs are created by running multiple encoder instances which is not my requirement.

    Is there any way by which we can configure ffmpeg to give multiple output for one encoder instance ?

  • Evolution #4496 (En cours) : [Cohérence d’interface] Harmonisation de la gestion des doc/logos en 3.3

    25 mai 2020

    Bonjour,

    Contexte

    Je viens de tester la migration de 2 sites en mutualisation facile de 3.2.7 SVN à 3.3 SVN.
    Nickel, ça marche.
    J’ai pu vérifier que les logos étaient bien déplacés dans sites/nomdedomaine/IMG/logo/

    Mais, j’avais cru comprendre que les logos devenaient des documents comme les autres, ce qui permettrait de les réutiliser via la bibliothèque.

    Constat

    Et là, c’est le drame.
    Les logos ne sont pas listés dans la bibliothèque.

    Réciproquement, l’upload des logos est identique aux versions précédentes de SPIP.
    Donc, ne permet :

    • ni d’aller chercher un logo dans la bibliothèque
    • ni de modifier un logo (il faut comme avant le supprimer, ce qui pose problème quand on veut modifier le logo normal et qu’il y a un logo de survol).

    Bref, c’est peut-être un chantier pour 3.4, mais en l’état, cette conversion des logos en documents ne me semble rien apporter pour l’utilisateur final.

    Comportements attendus

    • téléversement des logos utilisant les mêmes mécanismes que ceux des documents/images
    • boite d’édition d’un logo semblable à celle des documents, permettant entre autre de changer le fichiers du logo
    • logos listés dans la médiathèque
    • logos utilisable comme images dans les articles
  • FFMPEG Wrapping a raw video stream with OGG (or another wrapper)

    9 juillet 2014, par Cykon

    I’m building an application which takes in a rawvideo stream (piped in from an ffmpeg instance), manipulates and reads the raw video data, and pipes the output to another ffmpeg instance for encoding. Everything works great, however I’ve been trying to think of a solution which would allow audio to be sent into my program as well.

    The Ogg container seems to have a great C library, and it appears as if there has been some movement to add support for raw video https://wiki.xiph.org/OggRGB

    My plan was to pipe in a stream formatted for Ogg, use libogg to demux it, after parsing through the video data and manipulating it... use libogg again to encode and pipe out.

    Unfortunately, FFMPEG throws an "Unsupported codec id in stream 0" error when asked to output OGG with rawvideo.

    My test ffmpeg command is as follows :

    ffmpeg.exe -i fs0.mp4 -f ogg -c:v rawvideo -pix_fmt rgb24 -s 192x144 -

    Any solutions, or alternative solutions are welcome. As a side note, my program has the ability to take in multiple videos at once and outputs a combination of the inputs.