Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (57)

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

  • 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

Sur d’autres sites (7991)

  • Is there a way of using ffmpeg in c# app ?

    6 mai 2015, par randomuser1

    I’m using the ffmpeg.org and when I run ffmpeg -y -f vfwcap -r 25 -i 0 out.mp4 in command line I can grab the video from my webcam and write it to the out.mp4 file. However, I can’t see that stream anywhere. I thought about writing some simple wrapper in c# that is built on ffmpeg functionality, so far I found post mentioned on Stack before, but there’s nothing about displaying the data live (instead of saving it into the file). Does anyone have any experience with it ? Can I for example ’draw’ the received data from webcam on a picture box or on some other component ?
    Thanks !

  • Flutter : Saved Audio Not Accessible in Music Player Apps

    17 juillet 2024, par Husen

    I'm developing a Flutter app that generates MP3 audio files.
I can successfully save these files to the device storage. However, they're not showing up in any music player apps.
I'm using the path_provider package to get a suitable directory for saving the audio files.

    


    How can I make the saved MP3 files discoverable by music player apps ?

    


  • ffmpeg and php to trim my audios using passthru

    12 décembre 2014, par Geoffrey Mureithi

    I am using ffmpeg and php to trim my audios

    ffmpeg -ss 10 -i input.mp3 -t 6 output.mp3

    I would like instead of output.mp3 to use passthru ie :

    passthru("ffmpeg -ss 10 -i $file -t 6"); //instead of exec(.....);

    and play the preview without saving it. The code above does not work. How do I do it ?