Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (108)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (9618)

  • ffmpeg output the time with scan the black screen in the vdeo file

    23 décembre 2023, par jack

    I use the below command to detect the black screen in the video, but it can't output the time field with detected. May I know does have any command can let ffmpeg output the time in the detected ?

    


    ffmpeg -i "inputfile.mkv" -vf "blackdetect=d=2:pix_th=0.00" -an -f null -


    


    Output :

    


    [blackdetect @ 0000024d543c41c0] black_start:876.009 black_end:878.011 black_duration:2.002

[blackdetect @ 0000024d543c41c0] black_start:893.026 black_end:895.028 black_duration:2.002


    


    I checked the below of ffmpeg website

    


    https://ffmpeg.org/ffmpeg-filters.html


    


    but I still can't understand it and I need your help.

    


  • Is there a way to prevent black frames from appearing at the start of a video when using -c:v copy ?

    11 juillet 2023, par MethanE

    My task seems simple. Using ffmpeg in terminal, I'm trying to pass through the exact video settings minus the audio, and i've been successful, except for the fact that the videos start with a frame of black before the actual video plays.

    


    currently using this :

    


    for i in *.*;do ffmpeg -i "$i" -an -c:v copy "${i%.*}_noaudio.mp4";done


    


    My current thought is it may be related to the error I'm getting (the vid still exports), but I'm not certain :
Missing key frame while searching for timestamp : 1001

    


    Input video metadata :

    


    Metadata :
major_brand : XAVC
minor_version : 16785407
compatible_brands : XAVCmp42iso2
creation_time : 2021-09-12T20:13:46.000000Z
Duration : 00:00:17.52, start : 0.000000, bitrate : 107315 kb/s
Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 3840x2160 [SAR 1:1 DAR 16:9], 96798 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)

    


    Googling led me to try not using -c:v copy as there might be a glitch related to h264 keyframes and instead using -c:v libx264 but i really don't want to have to re-encode as I don't want to lose any quality. The file I tried this on went from 135 mb down to 6.

    


    Thanks for your help. Kind of a newb at this.

    


  • ffmediaplayer playing but screen keeps black

    27 août 2023, par Joergahmann

    I#m coding a video tool for sports with the Windows Template Studio and using the Community Toolkit.MVVM. I finished this with the vlcMediaPlayer and it worked almost fine. I need the Frameback (vlc does not provide) and I like autohiding the controls (which is hard with vlc). So I decided to use the ffmediaelemrnt instead.
Almost everything is ok (I hear sound, i can pause, forward ..), only the Video is not showing !!

    


    I'm using an observable property

    


    `    [ObservableProperty]
     private MediaElement _ffmeMediaElement;`


    


    instead of the original implementation with a complete different basemodel :

    


    public MediaElement MediaElement
        {
            get
            {
                if (m_MediaElement == null)
                    m_MediaElement = (Application.Current.MainWindow as MainWindow)?.Media;

                return m_MediaElement;
            }
        }


    


    —> Could this be the problem ? How do I get the (Application.Current.MainWindow as MainWindow) ? in my case with no mainwindow and a page instead


    


                        



    


    What I tried
When I use a contentcontrol instead : the Video is showing, but the controls are not autohiding anymore

    


    When I compile your WindowsSample, it works completly, but still shows the error Object reference not set to an instance of an object on

    


    I would appreciate any help. Thank you in advance