Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (97)

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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6247)

  • FFmpeg - create video from sub segment [duplicate]

    17 juillet 2018, par bFox

    This question is an exact duplicate of :

    I want to create clip from mp4 video by selecting sub segments of the video.
    e.g :

    test.mp4 is 50 second, and i want to create clip from segments
    [5..10] [20..30] [40..42]

    how can i do it at one command ?

    i’m using this command when i need one segment :

    ffmpeg -i test.mp4 -vcodec copy -acodec copy -ss 00:00:2 -t 00:00:10
    -sn 8sec.mp4

    thanks,

  • Fix "Non-monotonic DTS" Warning Caused By asetnsamples Filter

    3 septembre 2024, par Harry Muscle

    I'm using the following complex filter to mute certain parts of an audio file and replace those parts with a beep generated by the sine filter :

    


    [0]asetnsamples=n=1,volume=0:enable='between(t,1.57,1.97)+between(t,4.77,5.27)+between(t,5.37,5.87)+between(t,6.37,6.77)'[dippedVocals];sine=d=10:f=1000:samples_per_frame=1,pan=stereo|FL=c0|FR=c0[constantBleep];[constantBleep]atrim=start=0:end=6.77[shortenedBleep];[shortenedBleep]volume=0:enable='between(t,0,1.57)+between(t,1.97,4.77)+between(t,5.27,5.37)+between(t,5.87,6.37)'[dippedBleep];[dippedVocals][dippedBleep]amix=inputs=2


    


    Since I need the locations specified to be exact I'm using the asetnsamples filter to set 1 sample per frame to get the highest possible accuracy. However, as soon as I add this asetnsamples filter to my filter chain I get thousands of these messages :

    


    Non-monotonic DTS; previous: XXX, current: XXX; changing to XXX.  This may result in incorrect timestamps in the output file.


    


    Any idea what's causing that and how to fix it ? BTW, the input file is a ogg file encoded at 44100Hz and the output file is a wav file. Do wav files even contain timestamps ?

    


  • File type not recognized when using ffprobe with Python

    28 novembre 2017, par Damian

    This is my python script :

    #!/usr/bin/python3
    import os, sys, subprocess, shlex, re
    from subprocess import call

    def probe_file(filename):
       cmnd = ['ffprobe', '-show_packets', '-show_frames', '-print_format', filename]
       p = subprocess.Popen(cmnd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
       print filename
       out, err =  p.communicate()
       print "Output:"
       print out
       if err:
           print "Error:"
           print err

    probe_file(sys.argv[1])

    Being run with this command :

    python parse_frames_and_packets.py mux_test.ts

    And I’m getting the following error output :

    Unknown output format with name 'mux_test.ts'

    Can you not use .ts file types when using ffprobe with Python ? Because I’ve run ffprobe alone using this exact file and it worked correctly.

    Does anyone have any tips ?

    Edit :
    it seems to not recognize all types of video, not just transport stream (I just tried it with .avi and got the same response).