
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (105)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7756)
-
FFmpeg android execute
17 septembre 2019, par EftekhariOn windows I could cut a video with below code with ffmpeg.exe
Can’t use ffmpeg in android.
I used gradle to grab ffmpeg in my app.dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'
}I have these lines in my method
VideoIn = getInternalDirectoryPath() + "/Download/Ab.mp4";
VideoOut = getInternalDirectoryPath() + "/Download/Ab1.mp4";
try {
ffmpeg.execute("ffmpeg -i " + VideoIn + " -ss 00:00:03 -c:v libx264 -crf 17 -t 00:00:5 " + VideoOut + " -y",null);
}
catch (FFmpegCommandAlreadyRunningException e) {
e.printStackTrace();
}Shows this error : Error running exec(). Command : [/data/data/com.videoeditor.myname.myapp/files/ffmpeg, ffmpeg, -i, /storage/emulated/0/Download/Ab.mp4, -ss, 00:00:03, -c:v, libx264, -crf, 17, -t, 00:00:5, /storage/emulated/0/Download/Ab1.mp4, -y] Working Directory : null Environment : null
What’s wrong with this method ? Thanks for your help
-
Downloading ts stream with #EXT-X-DISCONTINUITY-SEQUENCE [ffmpeg]
29 juin 2018, par MiGu3XSo I’m using ffmpeg to download streams from the internet but I’m facing a problem with one of them and is that, every once in a while, in the middle of the stream, it goes to some kind of "break" and this #EXT-X-DISCONTINUITY-SEQUENCE tag appears on the .m3u8 files I start to download. I start getting "Non monotuonous DTS" errors on the console and the audio and video start to desync, eventually, I will play the stream once downloaded and it won’t work.
Is there any way to download with ffmpeg this kind of streams and in some way "skip" the m3u8 files which have this tag or maybe correctly parse them to the video ?
Hope someone could help me.
-
FFmpeg-php installation on cpanel server with CentOS7
31 août 2020, par MelI installed ffmpeg via below commands but unable to install FFmpeg-php on cpanel server with CentOS7.


Checked articles and found very old version. Please anyone can assist with new FFmpeg-php version and installation steps.


rpm —import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro


rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm


yum install ffmpeg ffmpeg-devel -y


Regards,


Mel