Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (65)

  • 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 ;

  • 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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9108)

  • doc/default.css + doc/t2h.init : New styles

    24 septembre 2013, par Timothy Gu
    doc/default.css + doc/t2h.init : New styles
    

    The main motive of this commit is to make the offline copy of the HTML doc as
    pretty as the online (ffmpeg.org) one. This also introduced new styles for
    <h2> to <h4>.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/default.css
    • [DH] doc/t2h.init
  • FFmpeg : building example C codes

    23 février 2021, par J. S.

    I have configured and compiled the FFmpeg library using this link :&#xA;https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    &#xA;&#xA;

    Now, I am trying to build example C codes provided by FFmpeg from here :&#xA;https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples

    &#xA;&#xA;

    However, when I run make install-examples or make install (suggested by /example/README), I receive this kind of message :

    &#xA;&#xA;

    &#xA;

    make : *** No rule to make target '/doc/examples/README', needed by&#xA; 'install-examples'. Stop.

    &#xA;

    &#xA;&#xA;

    I thought this may be due to the rules not being in the correct MakeFile format (I am not sure why they refers to README). How should I go about in fixing this and compiling the example codes ? I have tried to find solutions about this, but there doesn't seem to be much information online.

    &#xA;&#xA;

    Thank you.

    &#xA;

  • need help using ffmpeg to "concat" multiple audio files (webm, mp4) to make one longer MP3 of audio

    28 septembre 2020, par djturbojp7

    I have done some searching (for several hours) and tried to manipulate many examples to work for me, but I still keep coming up empty here.

    &#xA;

    I am using linux-mint 19, with ffmpeg installed. I have a folder with several audio files. The majority of these are "webm" (with no video) and there are a few "m4a". I am trying to make one long mp3 file from the audio in all of these strung together from start to finish.

    &#xA;

    Lets say for sake of argument, my directory has the following files :

    &#xA;

    audio file a.webm&#xA;audio file b.webm&#xA;audio file c.m4a&#xA;audio file d.webm&#xA;

    &#xA;

    I found a script that I could write online where someone is creating a file called "mylist.txt" with this bit of code :

    &#xA;

        # with a bash for loop&#xA;for f in ./*.*; do echo "file &#x27;$f&#x27;" >> mylist.txt; done&#xA;# or with printf&#xA;printf "file &#x27;%s&#x27;\n" ./*.* > mylist.txt&#xA;

    &#xA;

    this generated a text file with the following type of content :

    &#xA;

    file &#x27;./audio file a.webm&#x27;&#xA;file &#x27;./audio file b.webm&#x27;&#xA;file &#x27;./audio file c.m4a&#x27;&#xA;file &#x27;./audio file d.webm&#x27;&#xA;

    &#xA;

    first, I believe the "./" is causing a problem, because when I look at other examples I don't see this but I am not sure why it is generating this way in my script because I don't see this in web examples online. Second, I have tried to "concate" this with ffmpeg but I'm not sure which is the best option. I found some documentation here :

    &#xA;

    https://trac.ffmpeg.org/wiki/Concatenate

    &#xA;

    however this example applies to video specifically

    &#xA;

    Can anyone lead me in the right direction ?

    &#xA;

    EDIT******

    &#xA;

    I tried the solution below, with "mylist.txt" as the input and I am getting an error :

    &#xA;

        user@machine/TEMP$ ffmpeg -i mylist.txt -filter_complex "[0:a][1:a][2:a][3:a]concat=n=20:a=1:v=0[a]" -map "[a]" output.mp3&#xA;ffmpeg version 4.2.4-1ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 9 (Ubuntu 9.3.0-10ubuntu2)&#xA;  configuration: --prefix=/usr --extra-version=1ubuntu0.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-nvenc --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared&#xA;  libavutil      56. 31.100 / 56. 31.100&#xA;  libavcodec     58. 54.100 / 58. 54.100&#xA;  libavformat    58. 29.100 / 58. 29.100&#xA;  libavdevice    58.  8.100 / 58.  8.100&#xA;  libavfilter     7. 57.100 /  7. 57.100&#xA;  libavresample   4.  0.  0 /  4.  0.  0&#xA;  libswscale      5.  5.100 /  5.  5.100&#xA;  libswresample   3.  5.100 /  3.  5.100&#xA;  libpostproc    55.  5.100 / 55.  5.100&#xA;Input #0, tty, from &#x27;mylist.txt&#x27;:&#xA;  Duration: 00:00:00.40, bitrate: 47 kb/s&#xA;    Stream #0:0: Video: ansi, pal8, 640x400, 25 fps, 25 tbr, 25 tbn, 25 tbc&#xA;Stream specifier &#x27;:a&#x27; in filtergraph description [0:a][1:a][2:a][3:a]concat=n=20:a=1:v=0[a] matches no streams.&#xA;

    &#xA;