Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (75)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Using ffmpeg to split MP3 file to multiple equally sound length files

    11 septembre 2019, par daliaessam

    How to use the command line tool ffmpeg on Windows to split a sound file to multiple sound files without changing the sound properties same everything each one is fixed 30 seconds length. I got this manual example from here :

    ffmpeg -i long.mp3 -acodec copy -ss 00:00:00 -t 00:00:30 half1.mp3
    ffmpeg -i long.mp3 -acodec copy -ss 00:00:30 -t 00:00:30 half2.mp3

    But is there a way to tell it to split the input file to equally sound files each one is 30 seconds and the last one is the remaining what ever length.

  • config.h : No such file or directory after importing eclipse ndk project in android studio

    25 mai 2016, par Alin

    I have a working project in eclipse that uses ffmpeg. The implementation is like in this tutorial : http://enoent.fr/blog/2014/06/20/compile-ffmpeg-for-android/

    After importing the project into Android Studio 2.1 the only error I got was related to

    android.useDeprecatedNdk=true in my gradle.properties

    When I try to run the project I get the following error :

    config.h: No such file or directory

    on ffmpeg.h

    #ifndef FFMPEG_H
    #define FFMPEG_H

    #include "config.h"

    #include
    #include
    #include
    ....

    My build.gradle has :

    ndk {
               moduleName "videokit"
           }

    What should I do to fix the problem ?

    LE : Possible solution :
    - I created the jniLibs folder and added the .so file from eclipse lib’s folder and it seem to work...

  • Merge commit ’3399a26d3f57d462e839c0ee51223ae9aca20852’

    25 juin 2016, par Clément Bœsch
    Merge commit ’3399a26d3f57d462e839c0ee51223ae9aca20852’
    

    * commit ’3399a26d3f57d462e839c0ee51223ae9aca20852’ :
    nvenc : allow setting the number of slices
    nvenc : De-compensate aspect ratio compensation of DVD-like content.
    nvenc : list the major contributors in the copyright header
    configure : Don’t require nonfree for nvenc
    nvenc : drop the hard dependency on CUDA
    nvenc : only support HW frames when CUDA is enabled
    nvenc : write the VUI signal properties for HEVC
    nvenc : only write the VUI signal type fields if they are set
    nvenc : Generate bufferingPeriod/pictureTiming SEI
    nvenc : Delay frame output to increase encoding speed
    nvenc : add support for lossless encoding
    nvenc : Generate AUD NAL units for better compatiblity
    nvenc : fix the rc option definitions

    All these commits are noop as requested by Timo Rothenpieler.

    <BtbN> andrey_turkin, ubitux, yeah, I like the current state of nvenc in
    ffmpeg, I think most remaining differences should be merged on the libav
    side of things. At least I’m not aware of anything that’s missing in
    ffmpeg.

    Merged-by : Clément Bœsch <u@pkh.me>