Recherche avancée

Médias (91)

Autres articles (38)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (4299)

  • 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

  • ffmpeg loop through directory tree, output to identical tree in different root, only process files once

    22 juin 2020, par John M

    I would like ffmpeg to continuously loop through one directory structure looking for *.webm files and then convert them to mp4 when found, outputting them to an identical sub directory structure under a different path. Sub-directories/files are added to the tree automatically. I can do this manually, but my scripted attempts failed, I was using an ionotify event script to look for the new directories and re-running the conversion script, but it will not run continuously. I also do not want to process a file again once it has been converted.

    &#xA;

    I was using this invoked with each inotify :

    &#xA;

    find /opt/media/ -name "t_str_*.webm" -exec bash -c \&#xA;&#x27;ffmpeg -loglevel panic -acodec libopus -i $0 -strict experimental -movflags faststart ${0/webm/mp4}&#x27; {} \;&#xA;

    &#xA;

    I have the following directory structure, the subdirectories are alphanumeric.

    &#xA;

    Source :

    &#xA;

    parent1&#xA; - AAAAAA&#xA;   - file1.webm&#xA; - BBBBBB&#xA;   - file2.webm&#xA; - CCCCCC&#xA;   - file3.webm&#xA; - ZZZZZZ&#xA;   - file4.webm&#xA;

    &#xA;

    Destination :

    &#xA;

    parent2&#xA; - AAAAAA&#xA;   - file1.mp4&#xA; - BBBBBB&#xA;   - file2.mp4&#xA; - CCCCCC&#xA;   - file3.mp4&#xA; - ZZZZZZ&#xA;   - file4.mp4&#xA;

    &#xA;

    Any suggestions ?

    &#xA;