Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (82)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (10117)

  • libavformat/mtv : add missing MTV_ prefix to macro

    23 janvier 2014, par Reynaldo H. Verdejo Pinochet
    libavformat/mtv : add missing MTV_ prefix to macro
    

    Signed-off-by : Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>

    • [DH] libavformat/mtv.c
  • avformat/mux : Don't use av_ prefix for static functions

    13 août 2019, par Andreas Rheinhardt
    avformat/mux : Don't use av_ prefix for static functions
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c
  • Android Ffmpeg- Root Permission not granted to "su" Working Directory:null

    24 juillet 2015, par Workaholic Er

    I have compiled ffmpeg for android using ndk r10e on os x but it does not produce ffmpeg.so. All other libraries are generated. I have been searching this for over a week. I have tried various methods to execute ffmpeg command but none were successful. I used

    Process p=new ProcessBuilder("su /data/data/com.example.ffmpegtem/").start();

    Process p = Runtime.getRuntime().exec(
                   getBaseContext().getApplicationInfo().nativeLibraryDir);

    Process p = Runtime.getRuntime().exec(Environment.getExternalStorageDirectory().getPath());
    Process p = Runtime.getRuntime().exec("chmod 700 /data/data/com.example.ffmpegtem/app_bin/ffmpeg");

    All resulted in IOException-Working Directory : null. I also tried Shell Callback method provided by Github android ffmpeg library project which resulted in Nullpointerexception. I have written read/write permission.

    Convert 1 image to video code :

    DataOutputStream os = new DataOutputStream(chperm.getOutputStream());
    os.writeBytes("-loop 1 -i " + inpath + " -c:v libx264 -t 15 -pix_fmt yuv420p -vf scale=320:240 "+outpath);

    What am I doing wrong ? Please help