
Recherche avancée
Autres articles (102)
-
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 (...) -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4851)
-
how to determine if video file is 'high quality' using bitrate and dimensions ?
22 août 2016, par Flo WooAssuming a directory full of videos, if you extracted the video metadata to get video bitrate and dimensions. Is there a recommend way to plug in these values and get a LOW/HI quality answer.
I would like to sort videos into a LOW/HI quality directory layout but after using ffmpeg to get the meta data, it isn’t obvious how to programmatically ascertain the videos quality.
Is this possible ?
Thank you.
-
Annual Release of External-Videos plugin – we’ve hit v1.0
13 janvier 2017, par silviaThis is the annual release of my external-videos wordpress plugin and with the help of Andrew Nimmolo I’m proud to annouce we’ve reached version 1.0 !
So yes, my external-videos wordpress plugin is now roughly 7 years old, who would have thought ! During the year, I don’t get the luxury of spending time on maintaining this open source love child of mine, but at Christmas, my bad conscience catches up with me – every year ! I then spend some time going through bug reports, upgrading the plugin to the latest wordpress version, upgrading to the latest video site APIs, testing functionality and of course making a new release.
This year has been quite special. The power of open source has kicked in and a new developer took an interest in external-videos. Andrew Nimmolo submitted patches over all of 2016. He decided to bring the external-videos plugin into the new decade with a huge update to the layout of the settings pages, general improvements, and an all-round update of all the video site APIs which included removing their overly complex SDKs and going straight for the REST APIs.
Therefore, I’m very proud to be able to release version 1.0 today. Thanks, Andrew !
Enjoy – and I look forward to many more contributions – have a Happy 2017 !
—
NOTE : If you’re upgrading from an older version, you might need to remove and re-add your social video sites because the API details have changed a bit. Also, we noticed that there were layout issues on WordPress 4.3.7, so try and make sure your WordPress version is up to date.
-
ffmpeg to convert caf to mp3 or wav [on hold]
1er juillet 2014, par RubenIt seems similar posts around here suggest this should work but I keep getting errors.
While trying to convert a caf file to an mp3 or wav using ffmpeg
ffmpeg -i sample.caf out.mp3
libavutil 52. 90.101 / 52. 90.101
libavcodec 55. 68.100 / 55. 68.100
libavformat 55. 44.100 / 55. 44.100
libavdevice 55. 13.101 / 55. 13.101
libavfilter 4. 9.100 / 4. 9.100
libswscale 2. 6.100 / 2. 6.100
libswresample 0. 19.100 / 0. 19.100
libpostproc 52. 3.100 / 52. 3.100
[caf @ 0x412e7c0] Estimating duration from bitrate, this may be inaccurate
Guessed Channel Layout for Input Stream #0.0 : mono
Input #0, caf, from 'sample.caf':
Duration: 00:01:02.98, start: 0.000000, bitrate: 15 kb/s
Stream #0:0: Audio: ilbc (ilbc / 0x63626C69), 8000 Hz, 1 channels, 15 kb/s
[abuffer @ 0x411d840] Unable to parse option value "(null)" as sample format
Last message repeated 1 times
[abuffer @ 0x411d840] Error setting option sample_fmt to value (null).
[graph 0 input from stream 0:0 @ 0x412dcc0] Error applying options to the filter.
Error opening filters!I’ve also tried the following command.
ffmpeg -i sample.caf -acodec -sample_fmt dbl out.wav
libavutil 52. 90.101 / 52. 90.101
libavcodec 55. 68.100 / 55. 68.100
libavformat 55. 44.100 / 55. 44.100
libavdevice 55. 13.101 / 55. 13.101
libavfilter 4. 9.100 / 4. 9.100
libswscale 2. 6.100 / 2. 6.100
libswresample 0. 19.100 / 0. 19.100
libpostproc 52. 3.100 / 52. 3.100
[caf @ 0x433d8c0] Estimating duration from bitrate, this may be inaccurate
Guessed Channel Layout for Input Stream #0.0 : mono
Input #0, caf, from 'sample.caf':
Duration: 00:01:02.98, start: 0.000000, bitrate: 15 kb/s
Stream #0:0: Audio: ilbc (ilbc / 0x63626C69), 8000 Hz, 1 channels, 15 kb/s
[NULL @ 0x433ec60] Unable to find a suitable output format for 'dbl'
dbl: Invalid argumentIf I don’t pass the acodec flag I still get an error saying it can’t find the sample format.