Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (47)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8732)

  • how to show the waveform by ffmpeg [duplicate]

    28 octobre 2020, par Jackie Wang

    We generated the waveform (Pic 1) by ffmpeg but it is different from the waveform (Pic 2) which is generated from twistedwave. Do anybody know how to generate the 2nd waveform (Pic 2) by ffmpeg ? Or do you know what different between this 2 picture ? Thanks a lot.

    


    ffmpeg command:
ffmpeg -i audio.wav -lavfi showwavespic=s=1920x800 audio7.png

    


    Pic 1, Waveform from ffmpeg
    
Pic 2, Waveform from twistedwave.com

    


  • FFMPEG exported video is all black

    5 mars 2024, par Kartikey

    I am trying to generate a video wall of 4 videos using ffmpeg like the given image

    


    enter image description here

    


    I am exceuting this below script to get the desired result

    


    def merge_videos(output_file):
    command = [
        'path_to_ffmpeg/ffmpeg.exe',
        '-i', 'path/playblasts/front.mp4',
        '-i', 'path/playblasts/side.mp4',
        '-i', 'path/playblasts/persp1.mp4',
        '-i', 'path/playblasts/persp2.mp4',
        '-filter_complex', '[0:v][1:v][2:v][3:v]xstack=inputs=4:layout=0_0|w0_0|0_h0|w0_h0[v]',
        '-map', '[v]',
        output_file
    ]
    subprocess.run(command)


    


    where as passing output file path as argument, but I am getting below result

    


    enter image description here

    


    Any help would be appreciated.
Thanks & Best Regards

    


  • FFMPEG thumbnail image gives black image

    24 mars 2015, par user3772344

    I am trying to get the thumbnail image of video using ffmpeg. but for some of the video it shows the black image. I have done the following code.

    KxMovieDecoder * decoder = [[KxMovieDecoder alloc] init];
    [decoder openFile:videoURL error:nil];
    gHistory = [[NSUserDefaults standardUserDefaults]objectForKey:[decoder.path lastPathComponent]];;

    NSArray *ar =  [decoder decodeFrames:1.0f];
    KxMovieFrame *frame;

    for (KxMovieFrame *frames in ar)
    {
       if (frames.type == KxMovieFrameTypeVideo) {
           frame =  ar.lastObject;
           break;
       }
    }
      KxVideoFrameRGB *rgbFrame = (KxVideoFrameRGB *)frame;
    UIImage *imageKX = [rgbFrame asImage];

    I don’t know whats the wrong in this method