Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (65)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (8035)

  • Using ffmpeg to split MP3 file to multiple equally sound length files

    11 septembre 2019, par daliaessam

    How to use the command line tool ffmpeg on Windows to split a sound file to multiple sound files without changing the sound properties same everything each one is fixed 30 seconds length. I got this manual example from here :

    ffmpeg -i long.mp3 -acodec copy -ss 00:00:00 -t 00:00:30 half1.mp3
    ffmpeg -i long.mp3 -acodec copy -ss 00:00:30 -t 00:00:30 half2.mp3

    But is there a way to tell it to split the input file to equally sound files each one is 30 seconds and the last one is the remaining what ever length.

  • Using ffmpeg to split video files by size and by name and by name

    23 août 2019, par Cem Yağ

    I’m trying to split a video by size but I don’t know which code I have to use. And I want it listing output mp4 files as sorting for example name : Video 1 - Part(2).mp4, Video 2 - Part(2).mp4, Video 3 - Part(2).mp4 (You can think sorting name is incorrect but I want to part name locate should be after the “Video” sentence)

    Anyone can help me ?

  • split video into specific lengths using ffmpeg [duplicate]

    23 juillet 2021, par david

    I am trying to split a video into specific lengths (2 sec the same as GOP) using the following command :

    


    ffmpeg -y -i 1.mp4  -f hls -hls_time 2 -hls_list_size 0 -hls_flags single_file  NUL &&\


    


    but it produces the following error :

    


    '\' is not recognized as an internal or external command, operable program or batch file.


    


    I am new to FFmpeg and I do not know what is the problem. do you know why this error has happened ?