Advanced search

Medias (0)

Tag: - Tags -/formulaire

No media matches your criterion on the site.

Other articles (40)

  • Script d’installation automatique de MediaSPIP

    25 April 2011, by

    Afin 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 April 2011, by

    To 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 (...)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-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

On other websites (5326)

  • iFrameExtractor no ffmpeg with build_universal script

    15 August 2016, by AlecGamble

    I’m trying to follow this tutorial on how to extract the frames from an iphone video:

    http://www.codza.com/extracting-frames-from-movies-on-iphone#more-343

    It says to do the following:

    • open Terminal
    • clone the repository: git clone git://github.com/lajos/iFrameExtractor.git
    • go to the ffmpeg folder in the project: cd iFrameExtractor/ffmpeg
    • build the ffmpeg libraries: ./build_universal

    So there’s no ffmpeg folder in iFrameExtractor after cloning the repository so I went to the github page and it says to download the latest version of ffmpeg and move to to the ffmpeg folder (I presume it just means within iFrameExtractor):

    • Download the latest ffmpeg (0.11.1 tested):
      git clone git://source.ffmpeg.org/ffmpeg.git

    So I’ve done that but there’s no file or directory when I try to run ./build_universal and I can see that there isn’t.

    Any ideas what I’m doing wrong?

    Alternatively I was also looking at just installing ffmpeg-ios and trying to extract the frames myself:

    https://github.com/kewlbear/FFmpeg-iOS-build-script

    and I’ve run the script so I’ve got that folder in my xcode project as well but I’m unsure on how to link it properly?

  • Revision b192d99f73: Fix ads2gas script to look for ALIGN as a word. Change-Id: I4efc4f4e87e8666b692

    11 December 2012, by Frank Galligan

    Changed Paths: Modify /build/make/ads2gas.pl Fix ads2gas script to look for ALIGN as a word. Change-Id: I4efc4f4e87e8666b69257de82c5c5dd4aadee28c

  • FFMpeg working in command line but not in PHP script

    28 July 2016, by Jitendra Prajapati

    I am using FFMpeg to convert videos and it is working fine from the command line. I am using the following command:

    ffmpeg -i input.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv output.flv

    However, when I run the command using PHP script, the output video is not encoded.

    exec("ffmpeg -i input.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv output.flv",$output, $returnvalue);

    $returnvalue = 127;

    FFMPEG installed path :

    [root@localhost ~]# which ffmpeg

    /root/bin/ffmpeg

    My Script Path :

    www.domainname.com/core/foldername/ffmpeg.php

    Please provide me solution for the same ASAP.

    Thank you.