
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (106)
-
Publier sur MédiaSpip
13 juin 2013Puis-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, parThe 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, parLorsque 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 user3840315I 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 silviaIn 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œschMerge commit '9026ec8aaf5fa19cb4fb266c16f608af0d863b2b'
* commit '9026ec8aaf5fa19cb4fb266c16f608af0d863b2b' :
matroskadec : make sure not to leave EbmlBin in an inconsistent stateThis commit is a noop, see 5e1bacf2d49622f7ba4245f140b7be35972c0529
Merged-by : Clément Bœsch <cboesch@gopro.com>