Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (41)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

    26 novembre 2010, par

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

Sur d’autres sites (5326)

  • Emulate radio stream metadata

    17 juin 2018, par IllidanS4

    I work with an application that can connect to an audio stream via HTTP and play the audio. It can also connect to SHOUTcast and Icecast radios and play the streams, but for some radios, when the format is supported, it can read special metadata as well, like the name of the current song.

    I would like to use ffmpeg to produce an MP3 stream that contains the specific metadata this application understands. I know it is probably something specific to SHOUTcast or Icecast and not to the format itself, but I don’t know what exactly it is that the application can decode.

    If ffmpeg cannot produce such a stream (possibly because it is part of the HTTP metadata), I would welcome any details on how the metadata is encoded and how can I generate it (in PHP for example).

  • QMediaPlayer on Android

    18 août 2016, par Baradé

    I know that the QMultimediaWidgets are not supported for C++. I am developing a native application for Android as well. Since I don’t use QML I need a way of playing my videos in the application. I want to use the QMediaPlayer since I rely on the signals and slots. Is there any manually developed backend which works on Android or a solution how I can render the video myself still using QMediaPlayer ?

    Is there a way I can developed such a backend myself using ffmpeg or any available program on Android ? Will there be any update for this in Qt soon ?

  • FFMPEG Jar Library and Executable [on hold]

    27 juillet 2017, par NPE

    Currently working on FFMPEG library to create timelapse-based video creator application. Our application build on Java Environment (*.jar) and will be running on server side.

    I used FFMPEG for video compression because JMF doesn’t support for video compression.

    After reading several question on SO and doing some research, I know FFMPEG can do video compression through this command

    ffmpeg -i a.mp4 -s 640x480 -b:v 512k -vcodec mpeg1video -acodec copy b.mp4

    Our FFMPEG version

    ffmpeg version N-86848-g03a9e6f Copyright (c) 2000-2017 the FFmpeg developers
    built with gcc 7.1.0 (GCC)

    windows environment (*.exe)

    My question,

    1. Is there any FFMPEG jar file or library so we can call inside from our application (our code) instead of using ProcessBuilder to call exe ?
    2. Is FFMPEG provide jar executable version ? After doing some research here I not found any executable jar. We need call executable jar like this java -jar FFMPEG.jar
    3. How to packed all jar on library so when we build application will not produce any lib folder.

    Anyway, thanks.