Recherche avancée

Médias (91)

Autres articles (92)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (10788)

  • Using ffmpeg via Popen running extremely slow in python

    30 décembre 2016, par law

    I’m writing a script that batch processes video in python. Basically, it takes a .dv file turns it into .avi and the captures only the audio in .wav format. Command line use of ffmpeg on a mac terminal executes on the order of a second or so. But when I use Popen to run the same code from within python, each file takes multiple minutes. Not sure why...I think I may be using Popen inappropriately. Code listed below :

    command1 = ['ffmpeg', '-i', input_name, '-y', '-vcodec', 'h264', 'temp.avi']
    command2 = ['ffmpeg', '-i', 'temp.avi', '-ab', '160k', '-ac', '44100', '-vn', outfile]

    proc1 = subprocess.Popen(command1, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
    proc1.communicate()
    print "Converted to avi"

    proc2 = subprocess.Popen(command2, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
    proc2.communicate()
    print "Wavefile extracted"
  • FFmpegFrameGrabber faster SetTimestamp using only Keyframes

    8 novembre 2018, par Floesmaan

    i’m using javacv to read mp4 files and the following code to seek the video :

    FFmpegFrameGrabber frameGrabber;
    [...]
    frameGrabber.setTimestamp(timestamp);

    The problem is that it takes several seconds for "setTimestamp()" depending on how far away the timestamp is to a keyframe.

    I’m searching for an way to do a faster setTimestamp() only seeking to keyframes.

    Knowing all keyframe timestamps would be an option but i didn’t find any solution for that except reading all KeyFrames and storing the keyframe-timestamps using :

    frameGrabber.grabKeyFrame().timestamp

    But that takes very long. I also tried to extrapolate the keyframe timestamps but that only works if the keyframe interval is exactly the same over the video file which is usually not the case .

    Any ideas for a fast keyframe based setTimestamp/seeking for javacv ?

    Or do you know a videoplayer gui based on javacv/FFmpegFrameGrabber which has a fast time slider implementation ?

  • Questons about the relation of PTS and DTS in H.264

    2 mars 2020, par DJI_lover

    Why is PTS = DTS when there is no B frame in H264 ?

    Why is DTS not always smaller than PTS, because decoding takes time, even if PTS - DTS is a very small number ?

    I think the frame must be decoded before playing or is there something wrong with my understanding ?