Recherche avancée

Médias (91)

Autres articles (59)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (8175)

  • Getting this error in ffmpeg pipeline : Non-monotonous DTS in output stream 0:0 ; previous : 4951970, current : 4951659 ; changing to 4951971

    6 décembre 2022, par RoshaanAli

    Error : Non-monotonous DTS in output stream 0:0 ; previous : 4951970, current : 4951659 ; changing to 4951971. This may result in incorrect timestamps in the output file.

    


    I am using AWS Chime streaming then passing there data stream to FFMPEG and then going live with that data stream using AWS IVS(Interactive video service).
I am using ffmpeg for changing aspects of video on live streaming and brightness and contrast.
But when we turn off camera and after some time reopen it we facing the above mention error.
I have read about concat but we don't have input file actually we are passing data stream is ffmpeg that's why its not working.

    


    Here is my ffmpeg command

    


    ffmpeg=ffmpeg.spawn('ffmpeg', [
            '-i', '-' ,
            // '-f', 'concat',
            // '-segment_time_metadata','1',
            // '-use_wallclock_as_timestamps', '1',
            '-c:v', 'libx264',
            '-b:v', '2567k',
            '-maxrate', '6000K',
            '-preset', 'ultrafast',
            '-profile:v', 'baseline',
            '-level', '3.0',
            // '-aspect', '9:16',
            '-force_key_frames', 'expr:gte(t,n_forced*2)',
            '-movflags', 'faststart',
            '-fflags', 'nobuffer',
            '-tune', 'zerolatency',
            '-acodec', 'aac',
            '-ab', '160k',
            '-ar', '44100',
            '-f', 'flv',
            'rtmps-url/secret-key-replaced'
        ])


    


    I have tried this command -use_wallclock_as_timestamps', '1' but it does nothing to error.

    


  • Is it possbile to muxing a HEVC Annex B raw video file into a container(mp4,mkv..etc) without changing its start code with ffmpeg

    18 juillet 2018, par Adam Estel

    I have a code that extracting raw HEVC from a hevc/mp4 file

    ffmpeg -i video3.mp4 -c:v copy -bsf hevc_mp4toannexb output.hevc

    and I’ve read this topic :
    How to properly wrap H264 into FLV with FFMPEG ?
    It’s about a method that can wrap a raw H264 video in to flv with ffmpeg. Then i researched google for a while but i can’t figure a way wrap HEVC Annex B raw video file into a mp4 container without changing its start code( every NALU starts with a start code 0x000001 or 0x00000001 ), so is it possible with ffmpeg ?

  • Changing M4a sampling rate to a customized value

    19 novembre 2019, par Ahmed Hawary

    I am trying to change the sampling rate of an M4a file from 44100Hz to a customized value let’s say 51200Hz. I used the followng command which worked fine with wav sampling rate conversion :

    ffmpeg -i audio.m4a -ar 51200 audio_51200.m4a

    Unfortunately, it generates a file with a 48000 Hz sampling rate. Any ideas ?