Recherche avancée

Médias (91)

Autres articles (99)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (8722)

  • split audio into 3s, and discard if the length is less than it

    4 septembre 2019, par BarCodeReader

    I am using ffmpeg to split a batch of audio files into 3s pieces.
    However, let’s say for a 25s long raw audio, the previous 8 splits are good, no problem, but last piece will still be 3s with only 1s sound inside.

    I dont want the last piece and want ffmpeg to eigher discard or move to next audio..

    Is there such a command ?

    code I’m currently using :

       ffmpeg input.mp3 -f segment -segment_time 3 -c copy output.mp3
  • Split into video frames and save as jpeg

    3 janvier 2017, par Selman Akbulut

    I want to split all frames and save the jpeg file but Error getBuffredImage

    public static void main( String[] args )
    {
       FFmpegFrameGrabber g = new FFmpegFrameGrabber("C:\1.mp4");
       g.start();

       for (int i = 0 ; i < 50 ; i++) {
           ImageIO.write(g.grab().getBufferedImage(), "png", new File(System.currentTimeMillis() + ".png"));
       }
       g.stop();
    }
  • Split audio file into several files, each below a size threshold

    5 novembre 2022, par Ben Sandler

    I have a FLAC file which I need to split into several distinct FLAC files, each of which must be below 100 MB in size. Are there any UNIX tools which can do this for me ? Can I implement this logic myself ?

    



    Side-note : since FLAC is compressed, I figure that the easiest solution will require first converting the file to WAV.