Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (101)

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

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

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (10119)

  • create only 5 thumbnail images (Independent of time) via ffmpeg

    17 janvier 2015, par ali raha

    This code will create one thumbnail image every second, named out1.png, out2.png, out3.png, ...

    ffmpeg -i input.flv -f image2 -vf fps=fps=1 out%d.png

    But how can create only 5 image also Independent of time !
    I do not know about Length movies...I want the movie to be divided into five equal parts.and create pic per each part !

    something like this :

    start video<====out1.png======out2.png======out3.png=====out4.png======out5.png======>end video
  • Cutting movie with ffmpeg result in audio/video desync

    15 mai 2020, par T4ng10r

    I've concate long ago set of movies taken during some lecture. Now I want to cut them for each question/answer.

    



    I do it like this.

    



    


    ffmpeg -ss 00:00:34.7 -t 00:10:44.6 -y -i input_movie.mp4 -vcodec copy -acodec copy output_1.mp4

    
 


    ffmpeg -ss 00:11:22.2 -y -i input_movie.mp4 -vcodec copy -acodec copy output_2.mp4

    


    



    Yet, for the second part I can't set proper starting point so audio and video would be in sync.
    
Usually I could fix it with small tweeks in cut start time (like .1, .2, and so on). For this case this doesn't work.
    
When I play second cut in mplayer video is few second behind audio (where audio is cut properly). When I jump forward and back - all is again in sync.

    



    Where's the problem ? How to fix it ?

    


  • FFmpeg ubuntu script [on hold]

    9 décembre 2015, par Sambir

    Hi guys i want to create an ffmpeg script which picks up files from one folder transcodes them then deletes the source.

    So think of the following scenario :

    I place file A.mp4 and A.srt in folder input
    I also place file B.mp4 and B.srt in folder input

    In the night a script is executed which picks up these files places them in the folder "transcoding" then starts to transcode the movies one by one. So not parallel.

    When finished new files should be created in the output folder by the ffmpeg script. And the files in the folder "transcoding" should be deleted.

    Can anyone help me out here. It does not seem to be that complex but since I am not that good at coding any help is appreciated :)