
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (112)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin 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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (11731)
-
Execute command by php exec() with xampp in ubuntu {not working}
27 juin 2020, par Mohamed AliI executed this command

nohup ffmpeg -i input.mp4 -vcodec h264 -preset:v ultrafast -b:v 1000k -acodec mp3 output.mp4 2>output.txt &

in ubuntu by Terminal and it worked properly but when I tried to execute it by phpexec($myCommand)
it didn't work and show this message



I tried to solve it by change name of this file
libstdc++.so.6
tolibstdc++.so.6.old
in this directory/opt/lampp/lib
after that when I execute my command it show this message
ffmpeg: symbol lookup error: /lib/x86_64-linux-gnu/libcairo.so.2: undefined symbol: FT_Get_Var_Design_Coordinates


-
FFmpeg AVFoundation audio format is not supported by using Qt on macOS
23 juillet 2019, par JimThere’s an error when Using FFmpeg and Qt to build an application to record microphone on macOS.
Just call the avformat_open_input() only for testing open device.It worked at fist run, but failed after that.
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
avdevice_register_all();
AVInputFormat* iFormat = av_find_input_format("avfoundation");
inputFmtCtx = avformat_alloc_context();
int ret = avformat_open_input(&inputFmtCtx, ":0", iFormat, nullptr);
if(ret < 0) {
char errBuf[1000];
qDebug() << av_make_error_string(errBuf, sizeof(errBuf), ret);
return;
}
avformat_close_input(&inputFmtCtx);
return a.exec();
}The error message :
[avfoundation @ 0x7f955f8a0a00] audio format is not supported
It’s success every time when put the code before window show.
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
avdevice_register_all();
AVInputFormat* iFormat = av_find_input_format("avfoundation");
inputFmtCtx = avformat_alloc_context();
int ret = avformat_open_input(&inputFmtCtx, ":0", iFormat, nullptr);
if(ret < 0) {
char errBuf[1000];
qDebug() << av_make_error_string(errBuf, sizeof(errBuf), ret);
return;
}
MainWindow w;
w.show();
return a.exec();
} -
Skipping MP4 video
4 avril 2017, par M.YazdianI like to create the video player to show videos on my website. I made a video player in flash CS5 and actionscript3 to stream the videos on the website.
My videos are often flv or mp4 format.
In the flv files I use flvmdi app to inject the metadata to that ,and for skipping the flv file I use xmoov-php (video player can pass the keyframe number from flv metadat to xmoov-php to create the new flv file from passed keyframe to the last flv keyframe, and return the flv video file on the php header for flash video player to show the video ).but about mp4 format in Xmoov-php wiki it says :
this file can’t support the mp4 format to skiping...!!!
Now I need skiping the mp4 files in my video player (I like my viewers select a part of video before buffering all video on their browser and play it ).please give me a suggestion to skipping the mp4 file in the php or .net platform