Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (68)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

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

Sur d’autres sites (12538)

  • Anomalie #2025 : Surlignage intempestif

    14 avril 2011, par r o m y

    Non, pas en plugin, ni en option, mais par défaut. Ce surlignement devrait résulter d’un choix volontaire du webmestre, plutôt que d’être découvert ultérieurement (car c’est ignoré, mal documenté, peu maniable et peu utile), comme désagrément.

  • Error while trying to transcode video in FFMPEG

    10 mai 2021, par Cainnech

    I'm trying to stitch a few .MP4-files together using FFMPEG.
However when trying to stitch I always get an Invalid chan_config 8-error.

    


    So obviously there is something wrong with the file but I'm trying to bypass the issue so that I'm still able to stitch the file.Even if it means I lose the audio.

    


    I have tried to convert it into a MOV hoping that a re-encode might solve the issue, but that's not the case.
I have tried to remove the audio through FFMPEG but no luck.
Also trying to remap the audio doesn't work.

    


    I have tried converting it with VLC into another MP4. That works however I lose a couple of frames so when I try to stitch then, there's a jumpcut in the video.

    


    Does anybody have any idea how I could salvage this video ?

    


    [mov,mp4,m4a,3gp,3g2,mj2 @ 0000029238ba9280] Invalid chan_config 8
[mov,mp4,m4a,3gp,3g2,mj2 @ 0000029238ba9280] error reading header
E:\in.mp4: Invalid data found when processing input


    


  • vf_fade : Make sure to not miss the last lines of a frame

    16 février 2017, par Martin Storsjö
    vf_fade : Make sure to not miss the last lines of a frame
    

    When slice_h is rounded up due to chroma subsampling, there’s
    a risk that jobnr * slice_h exceeds frame->height.

    Prior to a638e9184d63, this wasn’t an issue for the last slice
    of a frame, since slice_end was set to frame->height for the last
    slice.

    a638e9184d63 tried to fix the case where other slices than the
    last one would exceed frame->height (which can happen where the
    number of slices/threads is very large compared to the frame
    height).

    However, the fix in a638e9184d63 instead broke other cases,
    where slice_h * nb_threads < frame->height. Therefore, make
    sure the last slice always ends at frame->height.

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavfilter/vf_fade.c