Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (103)

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

  • 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 ;

Sur d’autres sites (11685)

  • Compile FFmpeg shared library for macOS and libavdevice.58.dylib

    31 juillet 2020, par Igor

    I compiled FFmpeg 4.3.1 into shared libraries for macOS Catalina to implement a video playback in my app.

    


    However libavdevice.58.dylib is very small (70 KB instead of 2 MB) and doesn't include basic LibAV functions for a correct work. Other dylibs seems to be OK.

    


    brew install automake fdk-aac git lame libass libtool sdl shtool texi2html wget x264 nasm

./configure  --prefix=/usr/local --enable-shared --samples=fate-suite

make


    


  • audio dynamic range compression in php

    28 mai 2020, par monu214

    Is this possible to dynamic audio range compression in PHP. There is a lot of confusion between compression of audio, what I mean of audio compression here is described in this article.

    



    Some posts I saw here about the audio compression which only converts the audio format from wav to mp3 or other formats using FFmpeg, but what I want here is to change some audio settings like threshold, compression ratio, attack time, release time which is basic settings that can be used in audio compression.

    



    Is there any way I can do this in server-side using PHP ?

    


  • Error while trying to get output from command [C++]

    8 septembre 2021, par Jilijou

    I am trying to get the duration of a video using ffmpeg in C++ and I tried using a pipe to get the output from a command. I can't compile my code, getting this error :

    


    video_concat.cpp: In function 'int main()':
video_concat.cpp:17:41: error: expected ',' or ';' before '{' token
   std::string exec(commande_duration_2) {
                                         ^
video_concat.cpp:51:1: error: expected '}' at end of input
 }
 ^


    


    And this is my code :

    


    #include <iostream>&#xA;#include <memory>&#xA;#include <stdexcept>&#xA;#include <array>&#xA;#include <cstdio>&#xA;#include &#xA;#include <string>&#xA;#include <sstream>&#xA;&#xA;using namespace std;&#xA;&#xA;int main() {&#xA;  float duration_1, duration_2, full_duration;&#xA;  duration_1 = system("ffprobe -i goal1_25.mp4 -show_entries format=duration -v quiet -of csv=\"p=0\"");&#xA;  //duration_2 = system("ffprobe -i goal2_25.mp4 -show_entries format=duration -v quiet -of csv=\"p=0\"");&#xA;  const char* command_duration_2 = "ffprobe -i goal2_25.mp4 -show_entries format=duration -v quiet -of csv=\"p=0\"";&#xA;  std::string exec(commande_duration_2) {&#xA;    std::shared_ptr<file> pipe(popen(command_duration_2, "r"), pclose);&#xA;    if (!pipe) return "ERROR";&#xA;    char buffer[128];&#xA;    std::string result = "";&#xA;    while (!feof(pipe.get())) {&#xA;        if (fgets(buffer, 128, pipe.get()) != NULL) {&#xA;            duration_2 &#x2B;= buffer;&#xA;        }&#xA;    }&#xA;    return duration_2;&#xA;  }&#xA;&#xA;&#xA;  cout &lt;&lt; duration_1 &lt;&lt; " | " &lt;&lt; duration_2;&#xA;  return 0;&#xA;}&#xA;</file></sstream></string></cstdio></array></stdexcept></memory></iostream>

    &#xA;

    If I put between /.../ the pipe section, everything works fine but I don't get any result (Output : 0 | 0). Can anyone help me ? Thanks !

    &#xA;