Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (111)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11306)

  • Convert YUV420 to BGR without using videoconvert in GStreamer

    23 septembre 2019, par AnD Max

    I am using GSteamer, and I want to convert I420 to BGR format.
    Pipeline :

    gst-launch-1.0 filesrc location= ./Big_Buck_Bunny_1080_10s_1MB.mp4 ! qtdemux ! h264parse ! avdec_h264 ! fakesink

    I don’t use videoconvert plugin because it takes many CPU workload.
    I saw that avdec_h264 plugins has support BGR format and I tried to chose BGR format but the output always give I420 format ("avdec_h264 ! video/x-raw, format=BGR !").

    I tried to cast it to BGR format in source code (gst-libav/ext/libav/gstavvidec.c\gst_ffmpeg_pixfmt_to_videoformat()) but I got an error in (gst-libav/gst-libs/ext/libav/libavcodec/decode.c), 1606

    for (i = 0; i < num_planes; i++) {
               av_assert0(frame->data[i]);
           }

    Does my way correct ? Should I modify num_planes in deocode.c ?
    If it’s not a right way, can I convert format by using OpenCV with GStreamer pipeline ?

    If you have any good way, please tell me also.

  • avformat/avidec : Check height

    27 février 2022, par Michael Niedermayer
    avformat/avidec : Check height
    

    Fixes : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
    Fixes : Ticket8486

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/avidec.c
  • FFMPEG - How to setup volume when merging two audio streams

    6 octobre 2014, par N3sh

    I just recently entered the magic and scary world of FFMPEG and, although I found quite a lot of guides online, I need help for my current problem.

    I am merging only audio files and I would like to be able to select their volume.

    Here is my current code for merging 2 files :

    ffmpeg -i test\audio00.mp3 -i test\audio01.mp3 -filter_complex amerge
    -c:a libmp3lame -q:a 0 test\output_overlay.mp3

    I tried the following code, extracted from another answer here on SO (the User was also handling video), but it doesn’t work for me :

    ffmpeg -i test\audio00.mp3 -i test\audio01.mp3 -filter_complex "[0:a]volume=0.9[a1];  
    [1:a]volume=0.781250[a2]; [a1][a2]amerge,pan=stereo:c0code>

    I got this error :

    [AVFilterGraph @ 030fa8c0] The following filters could not choose their formats:
    Parsed_amerge_2 Consider inserting the (a)format filter near their input or output.

    Is there a simple way to change the volume for the two streams (even for just the second one, it’s the background music) with FFMPEG ?

    P.S. Also, is it possible to have some sort of ’preview’ before actually rendering the file ?