Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (52)

  • 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 (10658)

  • reading videos in matlab not working (the following codec(s) to be installed on your system)

    20 février 2016, par Ehab AlBadawy

    When I try to read a video in matlab v = VideoReader('t.avi'); I get this error :

    The file requires the following codec(s) to be installed on your system:
       video/x-msvideo

    and some time it needs mpeg codec when I try to load mpeg or mp4 video.

    I found someone referring to rename libstdc++.so.6.0 to libstdc++.so.6.0.10 but I found that I already have libstdc++.so.6.0.13

    I’m using matlab 2013 with archlinux.

    Update : I get this warring in the terminal when trying to read a video

    Failed to load plugin '/usr/lib/gstreamer-0.10/libgstpango.so':
    /usr/lib/libharfbuzz.so.0: undefined symbol: FT_Face_GetCharVariantIndex
  • syntax error in shell_exec php

    1er avril 2018, par Gerag2

    I’m stumped seems everything is right don’t know why it gives an error

    <?php
       echo "Starting ffmpeg...\n\n";
       echo shell_exec("ffmpeg -i /var/www/vhosts/site.com/httpdocs/Videos/*.* -i "$i" -c:v libx264 -crf 24  /var/www/vhosts/site.com/httpdocs/Videos/Output/"${i%.*}.mp4 null >/dev/null 2>/var/log/ffmpeg.log &");
       echo "Done.\n";
    ?>

    and yes this codes runs in terminal

    for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done
  • How to create a .command file with unity with execute previlages ?

    30 janvier 2017, par EhabSherif

    Hello everyone how do you do,

    In my app I’m trying to use ffmpeg through a batch file, windows works great writing .bat files, however when I write .command files on MAC the files don’t open and tells me that I don’t have permission.

    Also when I run the command
    chmoc u+x [.command File Path]
    through the terminal the file works..

    Knowing that when I create a new text file with the command and rename it to .command it works fine.

    I write the command file in unity using File.WriteAll, is there any other way for writing the file that gives the previlage needed ? knowing that I run the batch file using a process in unity.

    Thank You,