Recherche avancée

Médias (91)

Autres articles (90)

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

  • Trim with ffmpeg without re-encoding gives issues on the trimming point

    3 mai 2022, par Oleg Merkulov

    I have a video file with following parameters :

    


    Container: mp4
Video: h264
Audio: AAC
Duration: 00:29:38.03


    


    I need to extract 2 parts from it and merge it into one video. I want to keep the quality and make the operation as fast as possible. Thus -> I don't want to re-encode.

    


    I'm using the following :

    


    ffmpeg -y -ss 00:01:00 -to 00:03:00 -i 30.mp4 -c copy part-1.mp4
ffmpeg -y -ss 00:21:00 -to 00:29:00 -i 30.mp4 -c copy part-2.mp4
ffmpeg -y -f concat -safe 0 -i parts.txt -c copy merged.mp4
parts.txt:
file 'part-1.mp4'
file 'part-2.mp4'


    


    the output has 103 warnings like that :

    


    [mp4 @ 0x7fa91d707e40] Non-monotonous DTS in output stream 0:1; previous: 5759491, current: 5719904; changing to 5759492. This may result in incorrect timestamps in the output file.
[mp4 @ 0x7fa91d707e40] Non-monotonous DTS in output stream 0:0; previous: 3598631, current: 3574391; changing to 3598632. This may result in incorrect timestamps in the output file.


    


    merged.mp4 has an issue on 00:02:00, right after the cut.
The audio is not in sync with video for around 5 seconds and then after that it goes perfectly.

    


    What can cause such an issue ? Is there is a way to trim without losing quality ?

    


  • ffmpeg video-concatenation - audio-/videotrack Synchronisation

    29 avril 2013, par user1739223

    I'm want to concatenate different video-files of random format. First I convert them to flv, adapt the framerate of each video to lowest of the involved videos. Next step is to decode them and remove the header (but not the header of the first video in the sequence, then I concatenate them with cat and finally I encode the resultsequence.

    But the video- and audio-track are going more and more out of sync from sequence-part to sequence-part.

    Would be glad for any idea.

  • how to parse mkv file that hold h264 encoded video

    31 juillet 2015, par eruslu

    I have mkv files which holds h264 encoded video streams. This mkv files was created like this ; first rtp frames taken from network and dumped to a file, then this file converted to mkv by the help of program named "mkvmerge".
    Now i am trying to decode this mkv files ; first reading mkv file using ffmpeg’s AvFormatContext and getting an AvPacket. But i cannot understand which part is mkv header, which part is h264.
    Is there another way or any suggestion for my way of parsing ?