Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (103)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Publier sur MédiaSpip

    13 juin 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11373)

  • installing ffmpeg library using command line in android development

    30 novembre 2018, par YASHWANT

    I have tried to run a command from the application to install the ffmpeg library. This is my code :

    try {
       Process process =Runtime.getRuntime().exec("/system/bin/pm install ffmpeg");
       BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
    } catch (IOException e) {
       e.printStackTrace();
       Toast.makeText(getApplicationContext(),"failed",Toast.LENGTH_SHORT).show();
    }

    Problem :

    It doesn’t work and prints the output "failed".

  • Is it possible to use dex2jar converted jar file into your project

    15 septembre 2012, par swapnil adsure

    i want to use ffmpeg decoder for my android project but i am having lots of error and config problem to compile it.
    but today i read about apk recompiling by dex2jar.
    so My question is " it is possible to use that dex2jar.jar file into your project ?.
    Like is it possible for me to use ffmpeg decoder into my project by importing that jar file into my project ?.
    and same case with vitamio plugin . so if it is possible than i just need to add that plugin jar into my project and link with code and user dont need to download extra plugin.
    waiting for reply

    thank you

  • ffmpeg.exe not found inside project directory

    8 février 2019, par BayLife

    I´m currently working on my first electron / react app, which makes use of ffmpeg. I do have a problem to link the .exe file correctly.

    The prolem I´m facing is that I ffmpeg.exe is not found when trying to link it with a relative path inside my project directory. When using an absolute path it does work.

    The exe files are in the sub-folder of the current directroy.

    It does work when I´m using such path :

    'C:\\Users\\xxx\\Documents\\development\\ytDownloader\\app\\utils\\ffmpeg\\ffprobe.exe'

    But when trying it like this
    .setFfmpegPath('.\\ffmpeg\\ffmpeg.exe')

    or

    './ffmpeg/ffmpeg.exe'

    it does not working.

    Additionally I would really like to avoid using \\ in my project.

    Does someone have an Idea what I´m doing wrong here ?

    I get this error message :

    Error: spawn .\ffmpeg\ffmpeg.exe ENOENT
       at Process.ChildProcess._handle.onexit (internal/child_process.js:229)
       at onErrorNT (internal/child_process.js:406)
       at process._tickCallback (internal/process/next_tick.js:63)