Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (74)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (7646)

  • lavf : default .ogg audio to libvorbis if we can

    8 février 2014, par Andrew Kelley
    lavf : default .ogg audio to libvorbis if we can
    

    Since 2007, the Xiph.org Foundation recommends that .ogg only be used
    for Ogg Vorbis audio files.

    Source : http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions

    However we only do it if we have libvorbis available because the
    built in vorbis encoder is not as good.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavformat/oggenc.c
  • Error compiling ffmpeg when avfilter is enabled

    23 juin 2022, par pmike

    I want to compile a C++ application that uses ffmpeg and I want to use filters.&#xA;I have set up a cmake file with :

    &#xA;

    set(FFMPEG_OPTIONS "-Wl,-no_compact_unwind -L/usr/local/lib" "-L/usr/lib" "-lbz2" "-liconv" "-lz" "-lavutil" "-lavcodec" "-lavdevice" "-lavformat" "-lavfilter" "-lswresample" "-lswscale" "-lx264" "-pthread" "-lm" "-framework AudioUnit" "-framework AudioToolbox" "-framework CoreAudio" "-framework VideoToolbox" "-framework CoreFoundation" "-framework CoreMedia" "-framework CoreVideo" "-framework CoreGraphics" "-framework CoreImage" "-framework CoreServices" "-framework Security" "-framework Foundation" "-framework AppKit")&#xA;target_link_libraries(main PUBLIC ${FFMPEG_OPTIONS})&#xA;

    &#xA;

    But when I compile it gives the error :

    &#xA;

    Undefined symbols for architecture x86_64:&#xA;  "_pp_free_context", referenced from:&#xA;      _pp_uninit in libavfilter.a(vf_pp.o)&#xA;  "_pp_free_mode", referenced from:&#xA;      _pp_uninit in libavfilter.a(vf_pp.o)&#xA;  "_pp_get_context", referenced from:&#xA;      _pp_config_props in libavfilter.a(vf_pp.o)&#xA;  "_pp_get_mode_by_name_and_quality", referenced from:&#xA;      _pp_init in libavfilter.a(vf_pp.o)&#xA;  "_pp_postprocess", referenced from:&#xA;      _pp_filter_frame in libavfilter.a(vf_pp.o)&#xA;ld: symbol(s) not found for architecture x86_64&#xA;

    &#xA;

    If I don't use filters it works.

    &#xA;

  • How to use original names when using find -exec ?

    27 mai 2023, par ironsand

    There are .mp4 files I want to convert.

    &#xA;&#xA;

    $ find . -name &#x27;*.mp4&#x27;&#xA;./01.mp4&#xA;./02.mp4&#xA;./03.mp4&#xA;

    &#xA;&#xA;

    I expected to output files copy-01.mp4, copy-02.mp4 and copy-03.mp4 with this command.

    &#xA;&#xA;

    find . -name &#x27;*.mp4&#x27; -exec ffmpeg -i {} -c copy -aspect 16:9 copy-{} ";"&#xA;

    &#xA;&#xA;

    But it failed with errors Unable to find a suitable output format for &#x27;copy-&#x27;.&#xA;I thought {} represents the file name, isn't it ?

    &#xA;&#xA;

    How can I use original file names when using -exec option of find ?

    &#xA;&#xA;

    The find version is :

    &#xA;&#xA;

    $ find --version&#xA;find (GNU findutils) 4.4.2&#xA;Copyright (C) 2007 Free Software Foundation, Inc.&#xA;License GPLv3&#x2B;: GNU GPL version 3 or later /gnu.org/licenses/gpl.html>&#xA;This is free software: you are free to change and redistribute it.&#xA;There is NO WARRANTY, to the extent permitted by law.&#xA;&#xA;Written by Eric B. Decker, James Youngman, and Kevin Dalley.&#xA;Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b&#xA;Features enabled: O_NOFOLLOW(disabled) LEAF_OPTIMISATION FTS() CBO(level=0)&#xA;

    &#xA;&#xA;

    This is xargs version.

    &#xA;&#xA;

    xargs --version&#xA;xargs (GNU findutils) 4.4.2&#xA;Copyright (C) 2007 Free Software Foundation, Inc.&#xA;License GPLv3&#x2B;: GNU GPL version 3 or later /gnu.org/licenses/gpl.html>&#xA;This is free software: you are free to change and redistribute it.&#xA;There is NO WARRANTY, to the extent permitted by law.&#xA;&#xA;Written by Eric B. Decker, James Youngman, and Kevin Dalley.&#xA;Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b&#xA;

    &#xA;&#xA;

    Result of ffmpeg

    &#xA;&#xA;

    $ find * -type f -name &#x27;*.mp4&#x27; -exec ffmpeg -i {} -c copy -aspect 16:9 copy-{} ";"&#xA;&#xA;# almost same outputs several times here.&#xA;&#xA;ffmpeg version N-50911-g9efcfbe Copyright (c) 2000-2013 the FFmpeg developers&#xA;  built on Mar 13 2013 21:26:48 with gcc 4.7.2 (GCC)&#xA;  configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib&#xA;  libavutil      52. 19.100 / 52. 19.100&#xA;  libavcodec     55.  0.100 / 55.  0.100&#xA;  libavformat    55.  0.100 / 55.  0.100&#xA;  libavdevice    54.  4.100 / 54.  4.100&#xA;  libavfilter     3. 45.103 /  3. 45.103&#xA;  libswscale      2.  2.100 /  2.  2.100&#xA;  libswresample   0. 17.102 /  0. 17.102&#xA;  libpostproc    52.  2.100 / 52.  2.100&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;24.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : mp42&#xA;    minor_version   : 0&#xA;    compatible_brands: mp42isomavc1&#xA;    creation_time   : 2012-11-01 13:42:12&#xA;    encoder         : HandBrake 0.9.8 2012071700&#xA;  Duration: 00:24:58.62, start: 0.000000, bitrate: 474 kb/s&#xA;    Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x256, 341 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 180k tbc&#xA;    Metadata:&#xA;      creation_time   : 2012-11-01 13:42:12&#xA;    Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s&#xA;    Metadata:&#xA;      creation_time   : 2012-11-01 13:42:12&#xA;

    &#xA;