Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (101)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11739)

  • 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>&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
  • Ffmpeg : copy chapter and remove tags mkv files

    15 décembre 2018, par Chris

    I’m working with MKV files only. When I convert from original to target, video and audio works 100%. I however have issues copying the Chapters too, sometimes it works, other times not. The output file also contains 3 Tags I need to get rid of :

    Using MKVToolsNiX to check Output file :

    1. Entry - Global Tags
    2. Entries - Tags
    3. Entries - Tags

    My commandline looks like this :

    -map_metadata -1 -map 0:0 -map 0:1 -metadata:s:a:0 language=eng -metadata:s:v:0 language=eng -metadata:s:s:0 language=eng -c:v libx264 -s 1280x720 -pix_fmt yuv420p -b:v 2500k -r 30 -c:a ac3 -b:a 320k -ar 48000 -ac 6 -y

    Any help will be appreciated.

    Chris