Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (61)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (10800)

  • Should I use FFMPEG library vs CLI

    27 avril 2022, par Lauren

    In terms of performance, what is better to use, an FFMPEG library(like https://github.com/kokorin/Jaffree) or the FFMPEG command line interface ?

    


  • How do I access the ipod-library for decoding ffmpeg in the xcode ?

    16 janvier 2014, par M_On

    Thank you to look at my question.

    There is a problem with too slow to access the music file using ffmpeg.

    Get the URL of the music that is in the ipod-library by using the 'valueForProperty:MPMediaItemPropertyAssetURL' method.

    Use the (AVAssetExportSession Class) TSLibraryImport.m, extract the music files from ipod-library.

    However, I took the extraction time is too long. (4 seconds of the 3GS iPhone, iPhone 5 is 1 second)

    It was not possible to be decoded using FFmpeg If you do not the Export.

    In order to use FFmpeg, it's AVPlayer can not be used.

    I will never forget the grace if you can answer if you folded to know how other maybe.

  • Cannot Compile C Program That Uses a Library with GCC

    27 juillet 2018, par NetherGranite

    I am unable to compile a C project that uses a library called "FFmpeg" with a compiler called "GCC", and I believe it might be either because I don’t quite understand how #include works or because I am using the wrong compilation process.

    In a folder called Test, I have a file Test/test.c with the following contents :

    #include
    #include
    #include "FFmpeg/libavcodec/avcodec.h"

    The folder FFmpeg is located at Test/FFmpeg. When I try to compile this with GCC, I receive the following error :

    fatal error: libavutil/samplefmt.h: No such file or directory

    The file Test/FFmpeg/libavcodec/avcodec.h has the following code in it :

    #include "libavutil/samplefmt.h"
    #include "libavutil/attributes.h"
    #include "libavutil/avutil.h"
    ... //many more #include statements

    Is the issue here that I need to add "FFmpeg/" to all of these include statements ?

    If so, is there a way to automatically do this ? This library is enormous and probably has hundreds of these statements.

    If not, what should I be doing instead ? Should I attempt to compile the library by itself ? If so, how do I then include this compiled version of the library in my program ?


    Notes :

    • The command I am using to compile is gcc -c test.c.
    • I have GCC installed via MinGW.
    • I ultimately need to be able to compile this program to both a .dll and an .so.

    I apologize if any of the terminology I use here is incorrect or if my explanations are poor. I know almost nothing about compilation. Please let me know if I need to fill in more information.