Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (50)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5067)

  • How to cut from multiple input videos and concat to single video using ffmpeg ?

    21 février 2018, par Hadley V Sunny

    I did something like this

    ffmpeg -i video1.mp4 -ss 00:01:00 -to 00:03:00 -i video2.mp4 -ss 00:05:00 -to 00:02:00 -c copy cut.mp4

    Apparently muxing didnt happen.

    How can I make it work ?

  • avformat/hlsenc : write temp file for append single file by encryption mode

    22 juillet 2020, par Steven Liu
    avformat/hlsenc : write temp file for append single file by encryption mode
    

    fix ticket : 8783
    Because in single file by encryption mode, it cannot get the last one
    block of the file, it need ff_format_io_close for get full file size,
    then hlsenc can get the total size of the encryption content,
    so write the content into temp file first, and get the temp file content
    append the temp file content into append to single file, then hlsenc can
    get the correct file/content size and offset.

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c
  • Creating single exe with Aforge.Video.FFMPEG not working -Costura Fody c#

    29 mars 2019, par user2431727

    I was able to create single exe for my WinForm app using Costura and Fody (Any CPU .NET 4).
    All dll files used in my project are placed in a ’dll’ folder inside project. And Build Action of each dll is set to none. Then each dll in this folder is added as a reference.

    enter image description here

    Now I want to add Aforge.Video.FFMPEG.dll as reference and did as above. But when running the app it shows an exception :

    System.IO.FileLoadException : ’Could not load file or assembly ’AForge.Video.FFMPEG, Version=2.2.5.0, Culture=neutral, PublicKeyToken=03563089b1be05dd’ or one of its dependencies. Attempt to load an unverifiable executable with fixups (IAT with more than 2 sections or a TLS section.) (Exception from HRESULT : 0x80131019)’

    Finally I found that FFMPEG has 8 native dlls and this files should put in bin/Release folder along with Aforge.Video.FFMPEG.dll. Then I can only run the app.

    enter image description here

    Also Fody not embedding those native dll.
    How can I embed this FFMPEG to fody to create a single exe file ?
    enter image description here