Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (47)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (4556)

  • avformat/matroskadec : Remove redundant setting of chapter titles

    13 avril 2020, par Andreas Rheinhardt
    avformat/matroskadec : Remove redundant setting of chapter titles
    

    Chapter titles are added to the chapter's metadata since 6cb6e159,
    yet since 012867f0 (the predecessor of) avpriv_new_chapter() already
    adds the title to the chapter's metadata. So setting it again in
    matroskadec.c is redundant and expensive.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c
  • FFMPEG : Converting chapter points when converting PAL to NTSC

    26 février 2020, par koberulz

    I have a batch file converting my PAL TV series DVDs to the correct NTSC frame rates :

    for %%F in (*.mkv) do (
    echo A = LWLibAvVideoSource("%%F"^) > script.avs
    echo B = LWLibAvAudioSource("%%F"^) >> script.avs
    echo AudioDub(A,B^) >> script.avs
    echo AssumeFPS(24000,1001,sync_audio=true^) >> script.avs
    echo ResampleAudio(48000^) >> script.avs
    ffmpeg\ffmpeg.exe -i script.avs -aspect 16:9 -acodec ac3 -vcodec libx264 -preset slow -qp 16 "Output\%%F"
    del "%%F.lwi"
    del script.avs
    )

    pause

    But this removes the chapter points. I’m assuming map_chapters, if I figured out how to use it, would just shift in the chapters at the old PAL timestamps, so they wouldn’t match up to the correct times in the actual NTSC video ? Is there a way to get the chapters in the right spots other than manually opening each episode, finding the equivalent points, and manually creating each chapter ?

  • ffmpeg blackdetect, start_black value to mkv chapter ?

    2 décembre 2019, par stackoverflowknitter

    I’m trying to do automatic detect chapter with blackdetect with ffmpeg.

    When I use blackdetect I get result but what is the result ? Its not frames ? Also. Is it possible to do a script/bat-file (for windows 10, powershell or cmd) to convert the result to a "mkv xml-file" so It can be imported with mkvtoolnix ?

    ffmpeg -i "movie.mp4" -vf blackdetect=d=0.232:pix_th=0.1 -an -f null - 2>&amp;1 | findstr black_duration > output.txt

    result :

    black_start:2457.04 black_end:2460.04 black_duration:3
    black_start:3149.46 black_end:3152.88 black_duration:3.41667
    black_start:3265.62 black_end:3268.83 black_duration:3.20833
    black_start:3381.42 black_end:3381.92 black_duration:0.5
    black_start:3386.88 black_end:3387.38 black_duration:0.5
    black_start:3390.83 black_end:3391.33 black_duration:0.5
    black_start:3824.29 black_end:3824.58 black_duration:0.291667
    black_start:3832.71 black_end:3833.08 black_duration:0.375
    black_start:3916.29 black_end:3920.29 black_duration:4