Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5935)

  • how to find duration of a video file using mediainfo ?

    5 février 2014, par iota

    How can I find duration of a video file in miliseconds i.e. in integer in deterministic way.
    I have used ffprobe to get the duration but it doesn't give duration for all file formats.

  • conversion from mp3 to ogg using php

    9 janvier 2014, par Preethy

    I want to convert mp3 file to ogg. I tried the following code

    exec("/usr/local/bin/ffmpeg -i 1.mp4 -vcodec libtheora -acodec libvorbis testjohn4545454.ogg",$output);
    var_dump($output);

    But it does not convert the file and it only returns array(0) { }
    and it only takes a little execution time.

    But the conversion is success when using ssh command.

    Please give me solution.

  • FFMPEG cut out specific section of audio/video

    13 avril 2021, par Slade0120

    I'm trying to cut out specific parts from audio/video files. Attempting something like

    


    ffmpeg -ss 132 -i input.mp3 output.mp3

    


    seems to do the exact opposite of what I want and only give me the section i want to cut out.