Recherche avancée

Médias (91)

Autres articles (106)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (11355)

  • Can I create an audio output file overlaying or appending two inputs files without involve NDK (ffmpeg) ?

    14 février 2016, par Nadir

    I have OGG and 3GPP as input file formats and I need to do the following two operations.

    • Create an audio output file appending two or more files (one after the other)
    • Create an audio output file overlapping two or more files (they will play toghether).

    The input files can have different specifications such like length, frequency or channels number. Also I can convert the OGG files to MP3 or other sound formats if easier.

    I’d like to know if there is a way to achieve the above two points without involve NDK tools like FFMPEG.

  • FFmpeg : How do I split a 100GB MP4 file into several 1GB files ?

    8 janvier 2016, par Zopiro

    I’ve tried using the -fs switch, but it only creates a single file. The -f segment option allows me to use the -segment_time option, but that only limits the video duration, not its size.

    So, suppose I want to use ffmpeg to split a 100GB MP4 file into several 1GB MP4 files, what’s the switch ?

  • ffmpeg : cut multiple input files with seeking to one output file

    1er juin 2014, par Josef Kufner

    I have list of video files (loaded from database), each with start and end time of requested interval :

     # file   begin  end
     v1.mp4   1:01   2:01
     v2.mp4   3:02   3:32
     v3.mp4   2:03   5:23

    And I need to create single video file containing these intervals :

    [0:00]---v1---[2:00]---v2---[2:30]---v3---[5:50]

    I preffer usig ffmpeg, since it is installed on server. Caller program is written in PHP.

    It is easy to cut one input to one output (argument escaping removed for clarity) :

     exec("ffmpeg -ss $begin -i $input_file -ss $begin -c copy $output_file");

    I there any easier way than executing ffmpeg for each interval and then execute it once more to concatenate prepared clips together ? I really do not like to have a lot of temporary files or dealing with complex process handling.