Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (88)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9071)

  • Install Piwik with 1-click using Installatron

    28 mars 2013, par Piwik team — Community

    We 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.

    Installatron Piwik 1

    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.

    Installatron Piwik 2

    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 d4r10

    In 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 Choy

    I 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.mp4

    i 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