Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (111)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7769)

  • How to copy ffmpeg conversion output to file name without previous file extension [duplicate]

    20 janvier, par Tim

    I am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.

    


    find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a 


    


    This command produces a new file as such : ..01_Loser.mp4.m4a

    


    but I need ..01_Loser.m4a

    


    I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks !

    


  • avformat/file : Fix file delete for Windows

    31 décembre 2018, par Karthick Jeyapal
    avformat/file : Fix file delete for Windows
    

    Fixes bug id : 7638

    • [DH] libavformat/file.c
  • How to use ffmpeg to extract WAVE_FORMAT_GSM610 file to WAVE_FORMAT_PCM file

    26 juillet 2017, par xuejianbest

    I have a compressed audio file that is WAVE_FORMAT_GSM610 format.

    Now I want to open it with python wave module. But wave module only support WAVE_FORMAT_PCM file.

    I setup ffmpeg tools. What command can I use to complete this conversion ?

    Or Is there good way to complete the task ?

    Thinks.