Recherche avancée

Médias (91)

Autres articles (28)

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

  • Problem while using ffmpeg-android-java on Windows-10

    4 septembre 2018, par ml8educ

    I am developing a simple Android Java app in which I use ffmpeg-android-java library to create a video file (.mp4) from multiple image files (.png) & a single audio file (.mp3). The audio is created using text-to-speech (TTS).
    The app works on Ubuntu dev environment (where it was written), but when I work on same code-base using Android Studio on a Windows 10, the ffmpeg library either creates an empty mp4 (size 0 bytes) or doesn’t create mp4 file at all.

    The ffmpeg command I use is :

    ffmpeg -y -framerate 1/30 -start_number 1 -i img_%d.png -i person_name.mp3 -c:a aac -c:v libx264 -strict experimental -shortest person_name.mp4

    This command however works correctly through windows command prompt & creates the mp4 file.

    What am I missing/doing wrong here ?

    Please help. Thanks.

  • problem ffmpeg on linux batch convert .mkv to .mp4 with subtiles on .mkv file [closed]

    9 décembre 2020, par damvelisa

    I am trying to batch convert a large number of .mkv video files to .mp4 on linux while hard coding the subtitles included in the .mkv files. I would like to retain as much quality as possible.
is use this code but give error

    


     for f in *.mkv; do ffmpeg -i "$f" -vf subtitles="${f%.mkv}" -acodec copy "${f%.mkv}.mp4"; done


    


  • ffmpeg record Xvfb and pulseaudio got sync problem

    18 mai 2020, par boygiandi

    I using ffmpeg to record Xvfb and audio from pulseaudio. Sometime the video output has the audio ahead of video ( sometime normal - it happen randomly ). The flow like this

    



    ffmpeg 
|-> video : Xvfb -> Firefox
|-> audio : pulsesaudio


    



    So I don't know where this issue come from : ffmpeg or Xvfb or Firefox or pulseaudio
I already updated ffmpeg to latest version. Tried to config pulsesaudio load-module module-udev-detect tsched=0. Nothing help.