Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (57)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6877)

  • Remove 50 seconds every minute with FFMPEG [duplicate]

    2 août 2020, par Mathias Nervik

    I have a video that is about 5 minutes, and I want to remove 50 seconds every minute. Meaning that the end video should play normally for the first 10 seconds, then skip 50 seconds and play the first 10 seconds from the second minute, then skip 50 seconds...

    


  • Using ffmpeg with subprocess python

    23 décembre 2018, par Vincent

    I am trying to download videos from Wistia and I managed to download them but in .bin&amp format ; I’d like to convert them to .mp4 in order to use OpenCV. For this I am calling ffmpeg with subprocess on Python but I get 1 as the value for the return code, meaning the process has failed. Any idea why, and how I can change this...?

    Code is the following :

    import subprocess

    infile = filename #a bin&amp file
    outfile = filename[:-7]+'mp4'

    subprocess.run(['ffmpeg', '-i', infile, outfile],shell=True)

    I get :

    CompletedProcess(args=['ffmpeg', '-i', '58c63bccfcc1c150646c261caad97a58ced4b5e3.bin&amp', '58c63bccfcc1c150646c261caad97a58ced4b5e3.mp4'], returncode=1)

    Also, it works in the command prompt...

    Thank you for your help,

    Sincerely,

  • Where is the description for the '-strict' option of ffmpeg command ?

    21 septembre 2022, par tristan_jia

    I found a proper way from this post to trim videos by start and end time(in seconds), like :

    


    ffmpeg -i input.mp4 -ss 15.5 -to 18.98 -strict -2 out.mp4


    


    But I cannot find any description about this -strict from ffmpeg's official site. Anyone can give me a hint about the meaning of this option ? Thanks !