Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (13159)

  • how to give random name to the file in ffmpeg

    18 mars 2020, par amit9867

    How can i give random name to a output file in ffmpeg.

    I want to give the filename as current date_time (ex.2020-3-18-10-13-4.mkv).

    I don’t want to give a fix name such as output.mkv.

    import os
    import subprocess
    import tkinter as tk
    import datetime

    root = tk.Tk()

    os.chdir(f'C://Users/{os.getlogin()}/desktop/')
    def recording_voice():
     global p
     p =subprocess.Popen('ffmpeg -i video.avi -i audio.wav -c:v copy -c:a aac -strict experimental -strftime 1 "%Y-%m-%d_%H-%M-%S.mkv"' ,stdin=subprocess.PIPE)


    rec_btn = tk.Button(text='Start merging', width=20, command=recording_voice)
    rec_btn.pack()


    root.mainloop()
  • How can I add chapters to .mp4 files using a python script ? [duplicate]

    7 mars 2023, par Random

    Is there an easy way to add chapters (i.e. : sections with titles) to .mp4 files using a python script ?

    


    For example, the script could process a 3-minutes video and label the first minute as "Beginning", the second minute as "Middle", and the last minute as "End".

    


    The only solution (link) I stumbled upon so far involves using a ffmpeg command on the command line to extract the original ffmetadata from the video file before appending the chapters to it and updating the video with it.

    


    However, I would like the process to be automated using a python script (instead of having to use the command line each time I have to process a video).

    


  • avformat/mov : check that pcmC box is of the expected type

    4 février 2023, par Jan Ekström
    avformat/mov : check that pcmC box is of the expected type
    

    As per 23003-5:2020 this box is defined as
    PCMConfig extends FullBox(‘pcmC’, version = 0, 0), which means
    that version is 0 and flags should be zero.

    • [DH] libavformat/mov.c