Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (86)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5745)

  • FFmpeg concat in android

    13 avril 2018, par fvn

    I have trying to concat multiple videos (mp4 or mov)on Android Studio using FFMPEG. I have managed to get vidoes in an arrayList and their path like this :

    private List<string> getSelectedVideos(Intent data) {

           List<string> result = new ArrayList&lt;>();

           ClipData clipData = data.getClipData();
           if(clipData != null) {
               for(int i=0;icode></string></string>

    I have looked online on how to concat vidoes using FFMPEG https://trac.ffmpeg.org/wiki/Concatenate

    However I’m not sure how to do it using Android studio. Any help would be much appreciated.

  • ffmpeg on windows mobile with C#

    19 septembre 2017, par Riv

    I need to work with FFmpeg for windows mobile with C#, in fact I want build player for .m4b,.m4a files. I know that the TCPMP is exist, but I want to make my own.
    So I want to use .Net, and I have some questions :

    1. If I use some C# FFmpeg wrappers, for example TaoFramework, will it work on windows mobile(in case if I use FFmpeg lib compiled for windows mobile) ?

    2. In FFmpeg wiki I found this

    Once you have compiled, or downloaded,
    the Windows DLLs for FFmpeg, you can
    use .Net Platform Invoke (PI) to
    access the functions in the libraries
    libavformat and libavcodec.
    Link to source...

    But I don’t know how can I use it ? I tried to make it with dll that I had downloaded from http://ffmpeg.arrozcru.org/autobuilds/. Maybe I need to compile ffmpeg by myself for this option ?

    And last question is - what is libavcodec ? When I downloaded shared build, I got avcodec-52.dll, avfilter-1.dll, ffmpeg.exe, but I coudn’t find libavcodec.dll, or it’s just alias ?

  • Is there a way to integrate FFmpeg into own C#-Solution using Visual Studio ?

    17 avril 2023, par stupidbutseeking

    I can't figure out how to use FFmpeg in my own C#-Project.&#xA;I downloaded the win64 gpl shared release with the libs from https://github.com/BtbN/FFmpeg-Builds/releases but I can't find a way to integrate it into my existing Visual Studio Solution.

    &#xA;

    I also tried to compile the libs following this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT for win x64&#xA;and also this https://github.com/microsoft/FFmpegInterop&#xA;but none worked.

    &#xA;

    When I reference the dlls (using the Dependency-Manager from VS) it will complain that the references are invalid or not supported.

    &#xA;

    I also created a new VS Project but the same problem occured. I read in some forum that the target framework has to be netstandard2.0.

    &#xA;

    I think I missed something but I cant find out what it is.

    &#xA;