Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (81)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11317)

  • libfdk-aac : Limit to supported sample rates.

    25 septembre 2012, par Nathan Caldwell

    libfdk-aac : Limit to supported sample rates.

  • libfdk-aac : Limit to supported sample rates.

    25 septembre 2012, par Nathan Caldwell

    libfdk-aac : Limit to supported sample rates.

  • Calling ffmpeg api from Oracle

    1er mai 2012, par TenG

    I have installed ffmpeg and ffmpeg-devel packages on Linux.

    Oracle 11g is installed and running.

    The database stores media files, and for better streaming we need to convert them to AVI format.

    For ease of integration, we would like to do this conversion in the database.

    Now, the simplest option is to write a wrapper for the ffmpeg command line utility, and enable a PLSQL procedure to call this.

    However this would require the following steps :

    1. Read video BLOB
    2. Write to a OS file
    3. Call ffmpeg wrapper giving file name from (2) and output file name
    4. Load output file from 3 into a BLOB in PLSQL

    I would like to if possible write a C routine (using the Oracle External Library feature) which accepts the input as the BLOB (OciLOBLocator), calls the appropriate libavformat functions presenting the LOB, and write the return to a LOB (again OciLOBLOcator) which is what the PLSQL layer then uses as the AVI file.

    The other advantage of this is it avoids the undesirable impact of issuing a OS command from within Oracle.

    The problem I have is that the examples given for ffmpeg show the processing of data from files, whereas I need the libraries to process the LOBs.

    The alternative is to see if the OrdVideo data type in Oracle does this kind of conversion by using setformat and process.