Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (67)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

Sur d’autres sites (8088)

  • ffmpeg facebook live video download issues [closed]

    20 mai 2020, par HakanK

    What is the best working code line for ffmpeg to record Facebook live video stream ?

    



    Kind regards

    



    Hakan

    


  • lavf/wvenc : remove hacks since wavpack demuxer & decoder hacks have been fixed

    28 mai 2013, par Paul B Mahol
    lavf/wvenc : remove hacks since wavpack demuxer & decoder hacks have been fixed
    
    • [DH] libavformat/wvenc.c
  • 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.