Recherche avancée

Médias (17)

Mot : - Tags -/wired

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (11097)

  • avformat/ape : Use 64bit for final frame size

    22 mai 2024, par Michael Niedermayer
    avformat/ape : Use 64bit for final frame size
    

    Fixes : CID1505963 Unintentional integer overflow

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/ape.c
  • FFmpeg concatenation, no Audio in Final Output

    12 septembre 2016, par user4889724

    I have the following command working in ffmpeg, which adds 1 second of a black frame to the beginning of the video. However, I lose the audio from the original video in the output video. How can I adjust the command to make sure the original audio stays with the final output, or better yet, there is 1 second of "blank" audio at the beginning so it matches the new output video.

    ffmpeg -i originalvideo -f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1 -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; [1:v] trim=end=1,setpts=PTS-STARTPTS [pre]; [pre][main] concat=n=2:v=1:a=0 [out]" -map "[out]" finaloutputvideo.mp4
  • VLC cant read some audiotracks created by ffmpeg

    18 juin 2021, par skanarr

    I have two different .mkv files of the same movie. One contains the English, German, Italian, Spanish and French audio and subtitle tracks, the other contains Japanese Audio and Subtitle tracks. Since I want to have all tracks in one file I tried to 'merge' them using ffmpeg.

    &#xA;

    $ ffmpeg -i Movie.mkv -i Movie_jp.mkv -map 0:v -map 0:a -map 1:a:2 -map 0:s map 1:s:1 -map 1:s:2 -map 1:s:3 -c:v copy -c:a copy -c:s copy tmp.mkv&#xA;

    &#xA;

    Full Command Output from ffmpeg&#xA;That is the command I used and even though it took a while, I got my tmp.mkv.&#xA;However Playing it in VLC none of the Tracks from Movie_jp.mkv are working properly.&#xA;There are short periods where there is audio and then it is gone again for some minutes.&#xA;Also tmp.mkv freezes at 4:44 and freezes VLC for some time, before only audio continues top play.&#xA;Looking under Messages this is what I got

    &#xA;

    main error: module not functional&#xA;main error: failed to create audio output&#xA;

    &#xA;

    Then a bunch of warnings&#xA;and a ****load of

    &#xA;

    main error: Timestamp conversion failed (delay 1000000, buffering 100000, bound 9000000)&#xA;main error: Could not convert timestamp XY for FFmpeg&#xA;main warning: early picture skipped&#xA;

    &#xA;

    And finally

    &#xA;

    main error: buffer deadlock prevented&#xA;

    &#xA;

    (All Message from VLC )&#xA;I don't know what I did wrong. The Japanese tracks are working in Movie_jp.mkv.&#xA;The all non-japanese Tracks are still working in tmp.mkv.&#xA;Also there are working Tracks with the same codecs on tmp.mkv (dts) as well as subtitles (pgs).

    &#xA;