Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (69)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 April 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 (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 November 2010, by

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus; Son logo; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

On other websites (4718)

  • Révision 100686: Il n’y a pas d’auteurs sur les documents, autant récupérer cette colonne pour li...

    26 November 2016, by kent1@arscenic.info

    Sur une page de visualisation de documents, mettre le nombre d’utilisations dans un bloc

  • Revision 7242: On ajoute un champ dans les diogènes : #NOMBRE_ATTENTE Ce champ ...

    12 December 2012, by kent1 — Log

    On ajoute un champ dans les diogènes : #NOMBRE_ATTENTE
    Ce champ correspond au nombre maximal d’objet non publié que peuvent atteindre les rédacteurs et visiteurs. S’il est à zéro, cela correspond à illimité.
    On modifie en conséquence l’autorisation autoriser_diogene_creerdans qui prend en compte pour les non admin ce champs #NOMBRE_ATTENTE
    On incrémente donc le schema de base en 0.3.6
    Dans la création/modification des diogènes, ce champ n’est pour l’instant utilisé que sur les articles et emballe_medias.
    On ajoute donc une nouvelle autorisation qui est autoriser_diogene_utiliser qui elle retourne le même résultat que l’ancienne version de autoriser_diogene_creerdans afin d’afficher les menus par exemple listant les diogenes où on est sensé pouvoir accéder
    On revoit les autorisations dans les squelettes et pipelines
    Dans la page de publication, on affiche un message d’erreur d’explication si le nombre de media en attente possible a été atteint.
    Diogène passe en version 1.4.0

  • How do I use FFMPEG to pipe in a video file and pipe out a converted video file

    11 April 2014, by Ranjit Aneesh

    I have very limited knowledge of FFMPEG.
    My use case is that I have a content server with a http url from where I want to pipe in a video file (The video file can be of any format) and I have to convert them to some other format, sometime changing the resolution, and then pipe out and post the video back to the content server.

    I cannot keep a copy of the video file on the local file system where I run ffmpeg since they can be of large sizes and precious time will get wasted in doing so and then calling ffmpeg for conversion and finally writing back the file to content server. I may have to support both Linux as well as windows

    My question is

    1. Is it possbile for FFMPEG to be able to read a file from an http url
    2. Is it possbile to pipe in this data in some other way to FFMPEG if 1 is not possible
    3. Is it possbile to write the data back to a http location by making a ReST put/post call
    4. If 3 is not possbile is there some other way that ffmpeg can push the data back to the server.

    Thanks