Recherche avancée

Médias (91)

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications 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, par

    Certains 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, par

    Pré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 (11772)

  • PHP - Problems running ffmpeg.exe with shell_exec on Windows

    30 septembre 2012, par King

    I am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)

    Note : Using windows.

    Here is the code :
    it does not return anything, and does not encode anything, there are no errors, nothing happens :(, system($cmd, $returnval) returns 1 that's all
    running commands like dir works fine, so I have the required access.

    <?php
    $title = $_GET['file'];
    // encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
    $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
    $ll = system($cmd, $fv);
    echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
    ?>

    ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?

    Any ideas ? :O

    (The cd is not the problem because $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h'); works fine, its actually already in that directory)

  • Decode mp4 to raw frames windows c++

    27 septembre 2012, par p.streef

    I'm trying to decode an MP4 file i've created using mp4creator library. I can't find a ffmpeg or libav example that actually works with the libraries, because the code is incompatible with the examples.

    I need a simple way of reading the mp4 file and decoding it into raw audio and video frames. In needs to work on windows too.

    If someone can point me towards a working and compatible ffmpeg/libav library + example source file that could work too.

    If i could get the library version which was used in this tutorial that would work, since this guy seems to be the only one who wrote a decent tutorial on FFMPEG (albeit on some ancient version)
    http://dranger.com/ffmpeg/

    edit :

    In the latest version of ffmpeg i found the example named : filtering_video.c
    using a patch found : http://ffmpeg.org/pipermail/ffmpeg-devel/2012-June/126587.html I have gotten the program to do "something" It looks to be working so I will investigate further.

  • ffmpeg in matlab on windows

    22 octobre 2015, par Maystro

    Is there a way to run ffmpeg commands in matlab on windows.

    I know on Linux we can use the function system(’...’) to run any command but how can I do it on windows ?

    any idea would be appreciated

    Thanks