Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (20)

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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4299)

  • FFMPEG Reverse Video Without Losses (Lossless Reverse) [on hold]

    20 avril 2018, par Zé Nuno

    I need to reverse a video but without losses with ffmpeg.

    I already try to extract the video frames and reassemble(concat) it with different codecs and I try to rename the video frames but I got no success.

    Hope you guys can help me.
    Best Regards !

  • ffmpeg save remote file to user's computer

    18 mai 2018, par hmaxx

    I can cut and save a video from a remote server to my server using the below command :

    ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4

    I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.

  • How to apply effects to RGB frame decoded using ffmpeg ?

    23 juillet 2014, par user3665376

    I wanted to apply changes in contrast,brightness,saturation values of a video while rendering on android.I am using ffmpeg for decoding my mpeg4 video.

    I have two options for applying the effects ,

    1) Apply the changes on raw YUV frames .

    2) Apply the changes to RGB frames which are created from raw YUV frames .

    Which of the above is the best approach ?

    I started with option 2 and found a utility function at libwscale/util.c which has the below signature.

    int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
                            int srcRange, const int table[4], int dstRange,
                            int brightness, int contrast, int saturation);

    but the parameter specification of the above function was difficult to understand. Can anybody do a little elaboration on the parameters use in this function ?