Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (53)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (10485)

  • FFMPEG loudnorm ruins audio dynamics

    5 décembre 2020, par storror

    I've been trying to write a small python script to batch normalize
audio streams by LUFS. I'm using the two pass version of FFMPEGs
loudnorm filter, however no matter how I set up the parameters for
it, in the end result there's a drastic difference in loudness
between the beginning and the end of the audio stream. In linear
mode there is no problem, but i think the dynamic mode should be the
core of the whole filter.
    
My parameters :
    
IL_TARGET = -18dB
    
LRA_TARGET = 8dB
    
TP_TARGET = -2dB

    


    Input Integrated : -35.7 LUFS
    
Input True Peak : -12.9 dBTP
    
Input LRA : 4.5 LU
    
Input Threshold : -46.2 LUFS
    
Output Integrated : -18.0 LUFS
    
Output True Peak : -2.0 dBTP
    
Output LRA : 3.8 LU
    
Output Threshold : -28.6 LUFS

    


    Normalization Type : Dynamic
    
snip of the end result

    


    What causes this problem ? Is there anyway to solve it ?

    


  • Anomalie #4812 (En cours) : Faire des pull requests

    6 juin 2021, par George Kandalaft

    Hello

    Il y a moyen de faire des pull requests dans spip core ?
    Il y a pas mal d’ajustements de l’interface en RTL et c’est long de toujours créer des issues.

    Merci

  • Set custom cookie to ffmpeg http request

    18 février 2016, par Dima

    I use ijkplayer at my project to show a video stream (it based on ffmpeg lib), but I had change request and now I have to send some data in cookie for each request to the server. So I figured out that there’s http.c file which works with each request and added test cookie to cookie field

    char data[] = {'t','e','s','t','=','r','2','d','2',';','p','a','t','h','=','/',';'};
    s->cookies = data;

    I looked into wireshark, and I saw that my requests was sent with this cookie, but after first sending I receive this signal :

    libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0xa0c013e8 in tid 27629 (ff_read)

    Maybe somebody had same problem and can help me