Recherche avancée

Médias (91)

Autres articles (112)

  • 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 ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (13424)

  • Which value exactly tells the video stream bit rate in ffmpeg output ?

    8 septembre 2011, par userffmpeg

    I have a basic doubt. In the following ffmpeg output, which of the bit rate values (in bold) tells us the video bit rate ?

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'MVI_0135.MOV' :
    Metadata :
    major_brand : qt
    minor_version : 537331968
    compatible_brands : qt CAEP
    creation_time : 2011-04-25 14:59:29
    Duration : 00:00:33.03, start : 0.000000, bitrate : 20588 kb/s
    Stream #0.0(eng) : Video : h264 (Constrained Baseline), yuvj420p, 1280x720, 19028 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 48k tbc
    Metadata :
    creation_time : 2011-04-25 14:59:29
    Stream #0.1(eng) : Audio : pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s
    Metadata :
    creation_time : 2011-04-25 14:59:29

    Its a very basic question, but I would appreciate if anyone could tell me...

  • Which value exactly tells the video stream bit rate in ffmpeg output ?

    24 octobre 2020, par userffmpeg

    I have a basic doubt. In the following ffmpeg output, which of the bit rate values (in bold) tells us the video bit rate ?

    


    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'MVI_0135.MOV':
  Metadata:
    major_brand     : qt
    minor_version   : 537331968
    compatible_brands: qt  CAEP
    creation_time   : 2011-04-25 14:59:29
  Duration: 00:00:33.03, start: 0.000000, bitrate: **20588 kb/s**
    Stream #0.0(eng): Video: h264 (Constrained Baseline), yuvj420p, 1280x720, **19028 kb/s**, 23.98 fps, 23.98 tbr, 24k tbn, 48k tbc
    Metadata:
      creation_time   : 2011-04-25 14:59:29
    Stream #0.1(eng): Audio: pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s
    Metadata:
      creation_time   : 2011-04-25 14:59:29


    


    Its a very basic question, but I would appreciate if anyone could tell me...

    


  • How do I stop FFMPEG-Python from continuing to run in the background after execution ? [closed]

    3 juin 2023, par Alvar Gómez

    I'm using the ffmpeg wrapper for python 'Ffmpeg-python'.

    


    I'm doing a basic program that concatenate different short videos.

    


    I process each video separately to later concatenate them all together. I do it to make sure all the videos have the same resolution and frame rate.

    


    I'm using a basic tkinter interface to modify some parameters.

    


    My problem is that, for any reason, after executing the different ffmpeg commands, some of them keep running in the background(doing nothing, not even using CPU) so I can't open some of the videos in case i want to check something. In the moment i close the python script, those processes dissapear.

    


    This is my first post here, so i don't really know if this is the way I should do the posts. Thanks in advance.

    


    End those ffmpeg processes that keep running in the background without having to close the python script.