Recherche avancée

Médias (91)

Autres articles (20)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (4656)

  • How to determine which offsets changed in MP4 file after cutting a part of the MP4 file

    16 février 2021, par Muath

    This image displays each offset and the role of that offset in mp4 file.

    


    enter image description here

    


    And this is MP4 file viewed in Hex-Editor :

    


    enter image description here

    


    When cutting (as an example) first 60 seconds of that video or doing any cutting process, How can I know which offsets has been changed ?

    


  • FFMPEG past video part repeating

    15 mars 2021, par Tahsin Arafat

    For example :
I have a video.mp4 of 1 minute.
I want output as :
First 3 second will play, 4th second will be skipped and 1st second will be played instead of 4th second. Then, 5th-7th second will play, 8th second will be skipped and 5th second will be played instead of 8th second....This Infinity Loop(until total video duration ends)
And Audio volume Will be 200% boosted.
I want to know the command using ffmpeg. Please Help me doing it.

    


  • How to apply an ffmpeg audio effect only on a part of a video ?

    25 mars 2021, par Michael Ben Haym

    
My question is how can I apply an ffmpeg audio effect only on a certain part of a video and not on 100% of the video.
    
I have for example the following command :
    


    ffmpeg -i input.mp4 -filter_complex "afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75" output.mp4


    


    this command works perfectly for me but if for example I have a video of 30 seconds and want the effect to be applied only on seconds 20-25, how do I do it ?
    
Thanks !