
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (25)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (5964)
-
Threads creating process in infinite loop
10 décembre 2013, par bhupinderIn my application a thread runs while(1){} in it so thread terminates when my app is terminated by user.
Is it safe to do like this ? I am using while(1){} because my app continuously monitors devices on system.
After some time I am getting "(R6016) not enough space for thread data" on ffmpeg.
I read this but did not get solution of my problem :
http://support.microsoft.com/kb/126709
Thread description :
Thread uses ffmpeg and handle utility (http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx). within while(1){} loop.ffmpeg and handle is running through QProcess which I am deleting after process ends.
while(1){} loop waits for 5 seconds using
msleep(5000). -
Convert Videos with FFMPEG to PowerPoint 2016 compatible video format [closed]
11 septembre 2020, par Sebastian S.I am trying to convert a bunch of videos to a video format that is natively supported by PowerPoint 2013/2016 on a Windows 7 system.


Microsoft recommends on their website mp4 with h264 and aac.


Video and audio file formats supported in PowerPoint




In PowerPoint 2013 and later, and in PowerPoint 2016 for Mac, for the best video playback experience, we recommend that you use .mp4 files encoded with H.264 video (a.k.a. MPEG-4 AVC) and AAC audio. In PowerPoint 2010, we recommend that you use .wmv files.






We recommend using .m4a files encoded with AAC audio. In PowerPoint 2010, we recommend that you use .wav or .wma files.




Audio is not important for me.
I tried to convert my videos with ffmpeg using the following options :


ffmpeg -i Input.avi -c:v libx264 -preset slow -crf 22 -c:a copy Output.mp4



However I cannot import the video to PowerPoint 2016 (32 or 64bit, I tried both). I always get a missing codec error.


PPT Error when including video files


Has anyone successfully encoded videos to a natively supported PowerPoint video format (on Windows) ?


-
I need a to keep a PHP process running in background even If I redirect to another URL
24 mai 2018, par Emmanuel FernandezI have a PHP App that execute FFMPEG commands to encode videos and then upload encoded video to YouTube using Youtube v3 API.
I’m using shell_exec to perform FFMPEG actions and works very well.The problem it’s that I use an AJAX call to start the whole process and I need to keep the user in the the page where I execute the AJAX call, my intention is execute the AJAX call to start the whole process and inmediatly redirect the user to another page, The problem is that when I redirect to another page the PHP process is interrumped, there are any form to execute AJAX call, redirect and keep the PHP process running in background ?