Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (14966)

  • How to Save an Image (Current Frame) from an RTSP, using FFMPEG ?

    4 mars 2023, par spaceman

    I recently purchased a Security Camera,
    
and it provides an RTSP URL withwhich you can view the video.

    


    So If I run the command VLC rtsp://<ip>/etc</ip> for example,
    &#xA;then I am successfully able to watch the stream from the camera.

    &#xA;

    My question is :
    &#xA;Does FFMPEG provide some command line operation for Saving one Image from an RTSP Stream to disk ?

    &#xA;

    That way I can run this command, and have a .PNG or .JPG file created on disk.

    &#xA;

  • How to convert scte 128 closed caption data to a53 closed caption data ffmpeg ?

    1er novembre 2019, par sagar patel

    I have decoder which is not supported for scte 128 caption, Only support scte a53 caption data.I want to convert scte 128 caption data to scte a53 caption data.

    -If any idea or logic to convert scte 128 to a53 caption in ffmpeg.

    -Currently ffmpeg only support scte a53 caption data.I want add support to convert scte 128 data to a53 caption data in ffmpeg.

  • try to generate a frame from a video using FFmpeg command and try to save all frame in a upload directory

    15 juillet 2022, par Rahul singh
    import ffmpeg&#xA;&#xA;import os&#xA;&#xA;for video in os.listdir(video_path):&#xA;&#xA;     if video.endswith(".mp4"):&#xA;&#xA;          if not os.path.exists(&#x27;upload&#x27;):&#xA;&#xA;                 os.makedirs(&#x27;upload&#x27;)&#xA;                 os.chdir(&#x27;upload&#x27;)&#xA;                 print(os.getcwd())&#xA;                 command = f&#x27;ffmpeg -i {video} frame_%0d.jpg&#x27;&#xA;                 os.system(command)&#xA;

    &#xA;

    i am trying to generate frame using ffmpeg command and save frame in upload directory but not able to do it. can anyone help me with this. It will be great help. Thanks in advance.

    &#xA;