
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 (53)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7442)
-
Automator shell script (using ffmpeg) won't run on other machine
24 mai 2014, par kavaI have an Automator patch that runs a shell script that calls ffmpeg on a 10.9.3 mac.
I just try to call it via
ffmpeg
for test reasons without any arguments.
but it returns
ffmpeg: command not found.
But I can open ffmpeg regularly from terminal AND I can run the script on my other machine (10.9.2)
What’s wrong ?
EDIT : I also tried to add :
/opt/local/bin
in the shell script to the path variable, but it still won’t run.
also/opt/local/bin/ffmpeg -arguments....
won’t run
-
Revision 7050074756 : Make the api behavior conform to api spec. When no more data is available, vpx_
1er août 2014, par Hangyu KuangChanged Paths :
Modify /test/decode_test_driver.cc
Modify /vp8/vp8_dx_iface.c
Modify /vp9/vp9_dx_iface.c
Make the api behavior conform to api spec.When no more data is available, vpx_codec_decode should
be called with NULL as data and 0 as data_sz.vpx_codec_get_frame iterates over a list of the frames
available for display. The iterator storage should be initialized
to NULL to start the iteration. Iteration is complete when this
function returns NULL.Also change the unit test to conform to the api spec.
Change-Id : I4b258b309f5df3d37d10c82f01492c0394181c2a
-
ftp upload then loop
23 juillet 2012, par thevoipmanI have a minor bash script loop I'm trying to learn and accomplish but it's giving me a hard time to comprehend with all the readings I've done.
I am uploading to a ftp server, then I want to check to see if the upload went through successfully by using wget spider method. If it returns OK then we're good, if not then I want to redo the ftp upload once more.
The code I have below are based on my research and learning from here. If I could be doing this better, please help me revise it so I can learn from it.
Thanks again in advance :
for ((i = 0 ; i < 1 ; i++ ));
do
wget_output=$(wget -q --spider "http://$FTP_HOST/test.jpg")
if [ $? -ne 0 ];
then
ftp -in $FTP_HOST <<endftp user="user" binary="binary" put="put" bye="bye" endftp="endftp" else="else" echo="echo" code="code" fi="fi" done="done"></endftp>code>My errors when executing is :
line 28: syntax error: unexpected end of file