
Recherche avancée
Autres articles (61)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (11701)
-
Install Piwik with 1-click using Installatron
28 mars 2013, par Piwik team — CommunityWe are proud to announce that Piwik Analytics is now available as one click install from Installatron !
Installatron is a one-click web application installer that enables Piwik and other top web applications to be instantly installed and effortlessly managed. Get Piwik up and running on your website in seconds and discover just how easy Installatron makes it to manage web applications. Piwik installations managed by Installatron can updated (manually or automated), cloned, backed up and restored, edited to change installation parameters, and more.
Many web hosting providers provide Installatron through their web hosting control panel. If Installatron is not available from your provider, you can use Installatron directly from Installatron.com.
To install Piwik through your web hosting provider’s control panel (if available) :
- Login to your web host’s control panel,
- navigate to “Installatron”, click “Piwik”, and choose the “Install this application” option.
- Change any of the install prompts to customize the install. For
example, you can choose a different default language for Piwik. - Click the “Install” button to begin the installation process. You
will be redirect to a progress page where you can watch as Piwik is
installed within a few seconds to your website.
You can also install Piwik directly from Installatron.com, by navigating to Piwik @Installatron and choose the “Install this application” option. After filling in your FTP and Mysql information, you will be redirect to a progress page where you can watch as Piwik is installed within a few seconds to your website. After the installation, you may wish to change your FTP, Mysql password.
If you experience any problems or want to share your experience using Piwik and Installatron together, email the Installatron team at : feedback (at) installatron.com
-
bash script fail when a command wait ffmpeg to finish
5 novembre 2013, par d4r10In ubuntu 13.04 have a node.js server that launch for certain events, a script like this :
#! /bin/bash
...
...
avconv -i "$dir$video" -ss "$ss.000" -t $tt -threads 0 "$folder/$dif.webm"
y_uid=$(/app/youtube-uploader "$folder/$dif.webm" "$label" "$desc" | grep 'watch' | sed 's/v=/ /g' | awk '{print$2}')
echo "$y_uid" >> ~/log/yt.log
...
...if avconv (ffmpeg) process a small file (less then 30 minutes of encoding), the script works fine, but if avconv runs for hours, the next command "...youtube-uploader..." (that is a python based application) doesn't work (but if i try to launch it manually, it will go fine).
I have also tried to launch the next command inside a loop that check if the variable "$y_uid" is empty, so it will try to repeat youtube-uploader until it find a right value, but it will continue to stay in background and will try forever.. (and it is strange, because if i try to launch the command manually, it works fine..).
Summarizing, seems like that if avconv run for hours, the avconv process will generate a file that is not recognised or locked or a ghost file for the same script (but is recognised if the command is launched outside the script), if it is a small encoding, it will work fine.
Unfortunatelly It is difficult to debug or test, because i have every time to wait for hours, please help !
UPDATE
I think the problem is related at the buffer size of node.js OR some other buffer that store the standard output of ffmpeg. Just correct
avconv -i "$dir$video" -ss "$ss.000" -t $tt -threads 0 "$folder/$dif.webm"
in
avconv -i "$dir$video" -ss "$ss.000" -t $tt -threads 0 "$folder/$dif.webm" &> /dev/null
so all the ffmpeg output not full the buffer memory and everythings go well
-
How to seal subtitle on the video permanently ? ffmpeg
10 octobre 2017, par Robert ChoyI am able to add subtitle to my mp4 ; however, when i upload it on youtube, the subtitle is gone, disappeared.
So i am asking if there is any method to make the subtitle on the video (forever, permanently, seal it, burn it, force everyone watch the video with subtitle, can’t even turn it off manually)
ffmpeg -i video.mp4 -i subtitle.srt -c copy -c:s mov_text -disposition:s:0 forced \
permanently-subtitle-video-please.mp4i dont like the design of youtube subtitle, so i would love to upload my video + subtitle as one thing.
sorry i a not an English native speaker, hope you understand what i am trying to ask. thanks