Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (109)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (12999)

  • Flutter : RTMP Stream showing watermark and text in video output realtime

    10 avril 2023, par pinkywest

    I am trying to include a watermark and text details while video streaming,in Flutter using the video_stream/rtmp_broadcaster package, is this even possible ?

    


  • is it possible to have other text blend effects in ffmpeg other than transparency ? eg multiply or difference

    26 mars 2023, par shelbypereira

    In ffmpeg it is straightforward using alpha to set a transparency when using drawtext, but is it possible to have more complex effects ? eg if I want to blend text using difference or multiply ?

    


    I am guessing it is not possible with drawtext directly is it possible to simulate this using other features of ffmpeg ?

    


    The blend functionality is extremely powerful :
https://trac.ffmpeg.org/wiki/Blend

    


    But I don't see how I can add text to a video with drawtext and use those blending options.

    


  • encode audio ffmpeg c++ with different number of samples between input and output

    4 décembre 2015, par Victor Canezin de Oliveira

    I am trying to make an audio encoder to encode a live stream. I get my audio stream from a webrtc source. The properties for the source audio buffer is(AND I CANNOT CHANGE IT) :

    number of samples: 480
    sample size: 2 bytes
    sample rate: 44100Hz
    number of channels: 1

    I am using MP2 codec to encode the audio. It expects an audio number of samples of 1152(CAN’T CHANGE THAT EITHER), which is different from the source(480)

    I generate the audio frame using :

    frame->nb_samples = 480;
    avcodec_fill_audio_frame(frame, nb_channels(=1), sample_fmt(=AVCodecContext sample_fmt), temp_audio_buffer(=source), 480, 0);

    And I am getting a "chopped" sound. From what I know, It is because of the difference between number of samples in each frame.

    Is there a way to fill the entire frame(1152 samples) somehow ? Will I be able to encode this live stream ?

    thanks