Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (98)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (11046)

  • What are bitstream filters in ffmpeg ?

    11 septembre 2017, par Joseph K

    After careful reading of FFmpeg Bitstream Filters Documentation, I still do not understand what they are really for.

    The document states that the filter :

    performs bitstream level modifications without performing decoding

    Could anyone further explain that to me ? A use case would greatly clarify things. Also, there are clearly different filters. How do they differ ?

  • FFmpeg help, how should I use FFmpeg ? [closed]

    11 septembre 2023, par Señor Tonto

    I'm trying to use FFmpeg in my code, which is a C++ win32 application that I'm coding from Visual Studio Code 2022. I've downloaded FFmpeg from the BtnB Github that they link in their offical site as a pre-built binary. Now, I got the shared version, as I believed this would both have the command-line .exe app & the normal code headers & libraries. I tried using some code inside of my main.cpp to decode frames from .mp4 files as a test. For some reason though, on launch I got these errors : avcodec-60.dll cannot be found, avformat-60.dll cannot be found, avutil-58.dll cannot be found, swscale-7.dll cannot be found. So now I'm wondering why aren't these provided in the shared code ? there are only dll.a files but no actual .dll files, I also found .def files with the names of the .dll files I am apparently missing, now I want to know why these .dll files aren't provided. Do I need to build from source for that ? Or should I just forget using the .h & .lib files of FFmpeg & use the command-line app ? Any help appreciated.

    


    I want to use FFmpeg, but I can't find any guidance as to whether to use the command-line tool or the code function that aren't working due to the absent .dll filess

    


  • How can I fix missing footage when I trim a video through ffmpeg ?

    18 juillet 2021, par LPMA

    I'm trying to remove commercials from an old PVR recording, and am extracting the main program by trimming/splitting the original file into separate parts :

    


    ffmpeg -i name.avi -ss 00:02:00 -to 00:08:20 -acodec copy -vcodec copy part01.avi
ffmpeg -i name.avi -ss 00:11:23 -to 00:22:03 -acodec copy -vcodec copy part02.avi
ffmpeg -i name.avi -ss 00:25:34 -to 00:36:37 -acodec copy -vcodec copy part03.avi
ffmpeg -i name.avi -ss 00:40:08 -to 00:52:11 -acodec copy -vcodec copy part04.avi
ffmpeg -i name.avi -ss 00:55:41 -to 01:52:53 -acodec copy -vcodec copy part05.avi


    


    For some reason, parts 3 and 5 are perfect, whereas parts 1, 2 and 4 each have about 9 seconds where the audio is playing against a "frozen" frame before the video part starts playing normally. The audio data seems to be intact (and cut at the designated place), but the video seems to be missing that data. I'm guessing it might have to do with reference frames ? Is there a quick way to fix/avoid the issue ? I would like to avoid data loss (through transcoding) as much as possible.