Recherche avancée

Médias (91)

Autres articles (106)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (14709)

  • Unable to run ffmpeg with qProcess to extract a single frame from Vide

    24 janvier 2018, par user3840315

    I am trying to extract a single frame from a video using the QProcess in qt framework and ffmpeg and store it in a tmp folder. When I run the program in terminal command line it is able to extract it but not when QProcess runs it. I’m developing on a mac. What am I doing wrong.

    QString extractSingleFrame(QString videoPath, QDir tmpDir)
    {
       QString program = ffmpegPath();
       QProcess *ffmpegProcess = new QProcess();
       QString arguments;
       QFileInfo videoInfo(videoPath);
       QString videoName = videoInfo.fileName();

       QString firstFrameName(tmpDir.absolutePath() + "/" + videoName + ".jpg");
       arguments = " -y -i " + QDir::toNativeSeparators(videoPath)
                   + " -frames:v 1 -q:v 1 -f image2 " + QDir::toNativeSeparators(firstFrameName);

       QFile::remove(firstFrameName);
       qDebug() << "Starting program" << program + arguments;
       ffmpegProcess->start(program + arguments);
       // ffmpegProcess->start(program , QStringList() <<  arguments); this also doesnt work
       if (ffmpegProcess->state() == QProcess::Starting){
          qDebug() << "program is starting" + ffmpegProcess->state();
       }
       ffmpegProcess->waitForFinished(-1);

       qDebug() << "done";

       delete ffmpegProcess;

       return firstFrameName;
    }

    This is the printed command
    to start the program "ffmpeg -y -i "/Users/userX/test.mov" -vframes 1 -q:v 1 -f image2 "/var/folders/s1/vtv2cx36p3h0000gn/T/test-ywDBgj/test.mov.jpg""

  • Accessibility to Web video for the Vision-Impaired

    12 décembre 2010, par silvia

    In the past week, I was invited to an IBM workshop on audio/text descriptions for video in Japan. Geoff Freed and Trisha O’Connell from WGBH, and Michael Evans from BBC research were the other invited experts to speak about the current state of video accessibility around the world and where (...)

  • Merge commit '9026ec8aaf5fa19cb4fb266c16f608af0d863b2b'

    5 mai 2017, par Clément Bœsch
    Merge commit '9026ec8aaf5fa19cb4fb266c16f608af0d863b2b'
    

    * commit '9026ec8aaf5fa19cb4fb266c16f608af0d863b2b' :
    matroskadec : make sure not to leave EbmlBin in an inconsistent state

    This commit is a noop, see 5e1bacf2d49622f7ba4245f140b7be35972c0529

    Merged-by : Clément Bœsch <cboesch@gopro.com>