Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (31)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5851)

  • ffmpeg not working in other directory same encoder

    14 mars 2018, par Moein Hosseini

    I’m using a script to convert mp3 file to ogg file by libopus codec.

    when I use it in my home directory it works using this command :

    ffmpeg -i music.mp3 -c libopus out.ogg

    but when I’m in this directory :

    /home/moein/Desktop/BeatkhorBot/music

    the command does not work and gives me this error :

    Invalid encoder type 'libopus'

    does anyone know how to fix this ?

  • ffmpeg binary for android not working

    29 juillet 2014, par Abdul Qadir

    I’ve copied the ffmpeg binary provided here in the res/raw folder into my project’s assets folder. Whenever I need to run ffmpeg commands, I copy the binary into data/data/my-package-name/ and run the following command to check if everything works.

    Process process = Runtime.getRuntime().exec(ffmpegBinaryFilePath + " -version");

    I get the output by logging the stream by process.getInputStream(). Everything works as expected. But the binary provided in the project is old (version 0.11.1) and I also need to enable lame library to work with mp3 extension. So I decided to build my own binary. I’ve build using this script and also another script showed here. When I place the build binary into my project’s assets folder. I get no output when I run the code above i.e. the log is empty. I’ve also tried building with this script but it doesn’t create any binary i.e. there is no bin folder when compilation is finished.

    I’ve made ndk related changes to these scripts i.e. changed NDK, PLATFORM and PREBUILT variables (I have ndk10 64bit) and changed --enable-shared --disable-static to --disable-shared --enable-static. Also cleared any references to other libraries in the --extra-cflags and --extra-ldflags. Do I need to make any more changes ? Any help would be appreciated !!

    EDIT :

    here’s the log file of my latest build
    http://justpaste.it/gfeb

  • ffmpeg command to merge two mp4 file is not working

    27 février 2018, par Arpit Pagaria

    Hi I am trying to merge two mp4 file using ffmpeg commad. I found below command from somewhere. I have copy this complete command and paste this in cmd. But got error "Error initiaNo such filter : ’\’.Error Initializing complex filters.Invalid argument". Please help me out how to run this command ?

    ffmpeg -i GYM_1.mp4 -i Snow_1.mp4 -filter_complex "\
    [0:v]setsar=1[0v]; \
    [1:v]scale=720:576:force_original_aspect_ratio=decrease,setsar=1,\
        pad=720:576:(ow-iw)/2:(oh-ih)/2[1v]; \
    [0v][0:a][1v][1:a]concat=n=2:v=1:a=1[outv][outa] \
    " -map "[outv]" -map "[outa]" \
    -c:v libx264 -crf 23 \
    ffmpeg1.mp4