Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (5)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (1836)

  • How to "unconcatenate" MP4 file ?

    17 avril 2023, par arne

    I used Losseless Cut (which uses ffmpeg) to concatenate a bunch of MP4 files using ffmpeg concat demuxer. Unfortunately I didnt' check the result before deleting the source clips. The first clip had different format than the rest. The resulting clip has all the audio and video from the first clip. Rest of the video gives decoding errors.

    


    I'm looking for a way how to "unconcatenate" the file and get back the original video. I believe it's in the container, just incorrectly labeled as 1920x1080x50 hevc video.

    


    I believe I should export the audio and video streams, cut away the first frames from both streams up to the point where the first clip ends, then change the format of the video stream and finally put them back into container.

    


    I'm not sure what tools and commands to use the cut the video stream and what commands and tools to use force the correct video format on the stream.

    


    I've read ffmpeg documentation but it's vast and my use case isn't directly covered. I'm planning to play around with different tools, but I'm new to the subject and thought to ask first.

    


  • Ffmpeg behaving intermittently

    10 mars 2024, par confused

    I'm noticing something weird, for the first time ever today, and I'm not sure what the problem could even possibly be.

    


    I first noticed it while stripping videos with a python script I wrote. Now I realize it is even happen with command line entry.

    


    Some, but not all videos, and some but not all segments within the same video are not stripping correctly. I'm taking numerous 1-2 hour long videos and cutting segments out of it. When I go to look at the video clip afterwards it automatically jumps to 2, 5, 8, 10 seconds into the video and starts playing there. It depends on the video segment as to how far ahead it skips. If I try to get it to go back and play the first part of the video it won't, it just jumps back to the 2-10 second jump ahead spot and plays from there. In further investigating it is stripping the audio off correctly and keep all the first 2-10 seconds of the audio with the video clip, but it is not picking up the first 2-10 seconds of the video. When I go into VLC Media Player and try to go back to the beginning I have a frozen image on the screen until I get to the 'predestined' 2-10 second mark, and then the video will play fine. When I watch the original video, it is okay but when I strip it the new video doesn't pick up the beginning of the video. Finally had to go to VLC media player to figure that part out as it was the only one who even let me play the underlying audio, every other media player wanted to jump ahead and skip the entire first 2-10 seconds altogether.

    


    This is happening with numerous different videos and video segments within the same video. Some segments it will strip fine others it won't.

    


    This occurs either way, python or command line. I just checked and the underlying video plays fine in the regular media player, until I strip the video, then it wants to skip the first 10 seconds.

    


    How might I fix this problem ?

    


  • mpeg-2 ts video audio skipping - HTTP Live Streaming

    15 août 2012, par Kami Shangool

    I have multiple mp4 streams that I take and convert into mpeg-2 ts format using ffmpeg

    ffmpeg -i 0.mp4 -vcodec libx264 -sameq -acodec libfaac -fflags +genpts -coder 0 -f mpegts 0.ts

    The mp4s range from 1 to n. After converting all of them, I create a manifest file similar to :

    #EXTM3U
    #EXT-X-TARGETDURATION:4
    #EXT-X-VERSION:4
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-PLAYLIST-TYPE:EVENT
    #EXTINF:4.000,
    http://localhost/Nick2/0.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/1.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/2.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/3.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/4.ts
    #EXT-X-ENDLIST

    I've added the #EXT-X-DISCONTINUITY since the I'm trying to get back to back playback of the converted mp4's. The problem is that if I try to use HTTP live streaming, there is a noticeable pop in the audio between files. But that isn't apparent if playing the segments in QT.
    Any thoughts on how I can fix this ?