Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (6515)

  • merge audio and video with ffmpeg doesnt work correctly

    3 février 2023, par Iman Amani

    I have ubuntu 20.04 and in past days I did this job(merge video and audio) well in terminal and with ffmpeg :

    


    ffmpeg -i input.mp4 -i input2.mp3 -c copy output.mp4

    


    so fast I have recived output.mp4, but now I tried this one and get output without any sound !

    


    I try another ways to merge this ones(also with ffmpeg) but there are no diffrent...

    


  • sting up ffmpeg to work in XAMPP

    1er juin 2012, par danny

    I'm trying to figuring out how to install and use ffmpeg on windows 64 with XAMPP.

    I have flow this tutorial and install the ffmpeg-php librarys and I can see the expansion in the phpinfo().

    Now I put my ffmpeg.exe in the site root folder and I run this php script :

    extension_loaded('ffmpeg') or die('Error in loading ffmpeg');

    function convertTo( $input, $output )
    {
    echo $cmd = "ffmpeg -i $input $output";
    $outputData = array();
    exec( $cmd , $outputData);
    echo "<br />";
    print_r($outputData);
    }

    convertTo( "input.mp4", "output.flv" );

    and I get this output :

    ffmpeg -i input.mp4 output.flv
    Array ( )

    but no encoded file.
    My php safe mode is off and the movie file is in the root folder too.

    workplace info :

    • win7 64bit
    • XAMPP 1.7.2
    • Apache 2.2
    • php 5.3.5

    Help will be appreciated.

  • How to run FFmpeg command in Qprocess to make it work ?

    18 août 2024, par NintySwinty

    I have problem with QProcess. I added FFmpeg and command to Qt process. When I run this and I don't see any changes in folder where should be files .mkv. Somebody said me to add "\n" to the but this don't help. ( I do it on macOS Catalina )

    &#xA;

    void MainWindow::Recording(){&#xA;&#xA;    qDebug() &lt;&lt; "Nagrywam!";&#xA;&#xA;    Qrec.setProcessChannelMode(QProcess::MergedChannels);&#xA;    Qrec.setProgram("/Users/nintyswinty/Desktop/Dev/Qt/build-PlazaPCO-Desktop_Qt_5_15_1_clang_64bit-Debug/ffmpeg");&#xA;    Qrec.setArguments({"-framerate", "30", "-f", "avfoundation", "-i", "1", "-f", "avfoundation", "-framerate", "30", "-i", "0", "-c:v", "libx264", "-crf", "0", "-preset", "ultrafast", "~/Desktop/PlazaPCO/" &#x2B; QString::fromStdString(date) &#x2B; ".mkv\n"});&#xA;    Qrec.start();&#xA;    Qrec.waitForFinished();&#xA;&#xA;    qDebug() &lt;&lt; "Koniec - nagrywam";&#xA;&#xA;}```&#xA;

    &#xA;