Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (111)

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

  • How to use H.265/HEVC C++ decoder in C# project

    4 juillet 2016, par MyIsaak

    I need to write a C# application that uses any open-source video decoding library that supports 4K resolution (H.265/HEVC or VP9). The problem is that they are written in C or C++ and I dont know how to use them in C#.

    Idea : Would it be able to compile them into a .dll for use in C# ?


    The following open source libraries I found are :

    Thanks for reading !

  • FFmpeg is not working in my android project

    16 mai 2023, par CODAR747

    I wanted to create an activity that selects a video and then at the click of a button splits the video into parts of 29 seconds each. I tried this code but it didn't work. Here's how I did

    


    FIRSTLY I ADDED THIS DEPENDENCY -

    


    com.arthenica:ffmpeg-kit-video:5.1.LTS


    


    THEN IMPORTED THESE WITHIN MY ACTIVITY

    


    import com.arthenica.ffmpegkit.FFmpegKit;
import com.arthenica.ffmpegkit.FFmpegKitConfig;


    


    AND FINALLY WROTE THIS CODE TO SPLIT THE VIDEO

    


     public void splitVideo() {
                String[] command = {"-i", videoUri.toString(), "-c", "copy", "-f", "segment", "-segment_time", "29", "-reset_timestamps", "1", "-map", "0", "output_%03d.mp4"};
                FFmpegKit.execute(Arrays.toString(command));
            }


    


    but this code is not splitting the selected video. To select video I have different functions and those are working fine. I have a problem with the splitting video using FFmpegKit.

    


  • Use ffmpeg on OSX Xcode Project for Mac

    25 mai 2016, par cmario

    I am planning to create a new app for personal use on my Mac that uses FFMPEG library, to store a feed from a RTSP IP camera.

    Following this official installation procedure from FFMPEG I have manage to successfully achieve the following 2 steps :

    To get ffmpeg for OS X, you first have to install ​Homebrew. If you don’t want to use Homebrew, see the section below.

    Then :
    - brew install automake fdk-aac git lame libass libtool libvorbis
    libvpx \ opus sdl shtool texi2html theora wget x264 xvid yasm

    Question :
    My question here because I am confused, is how to import a library into Xcode so I can use it in the application I am about to build for my Mac. I can see plenty of GitHub projects related to FFMPEG with IOS/Android, but none for OSX.

    All the FFMPEG commands under terminal are working fine, such as converting a video etc.