Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (74)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (9081)

  • avutil/opt : Print out numeric values of option constants

    17 septembre 2019, par Soft Works
    avutil/opt : Print out numeric values of option constants
    

    It's often not obvious how option constants relate to numerical values.
    Defaults are sometimes printed as numbers and from/to are always printed as numbers.
    Printing the numeric values of options constants avoids this confusion.
    It also allows to see which constants are equivalent.

    Before this patch :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat E........ flat format
    csv E........ csv format
    ext E........ extended format
    ffconcat E........ ffconcat format
    m3u8 E........ M3U8 format
    hls E........ Apple HTTP Live Streaming compatible

    Afterwards :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat 0 E........ flat format
    csv 1 E........ csv format
    ext 3 E........ extended format
    ffconcat 4 E........ ffconcat format
    m3u8 2 E........ M3U8 format
    hls 2 E........ Apple HTTP Live Streaming compatible

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/opt.c
  • Big problems while compiling FFMPEG for iOS5

    6 octobre 2024, par Vlad Bogdan

    I'm trying to compile the ffmpeg library for iOS5. I tried different options but none works.

    &#xA;&#xA;

    I downloaded this : https://github.com/ciphor/ffmpeg4ios .

    &#xA;&#xA;

    I tried the original build_armv7 but it didn't work. I edited the build_arm7 file and now it looks like this :

    &#xA;&#xA;

    #!/bin/tcsh -f&#xA;&#xA;if (! -d armv7) mkdir armv7&#xA;if (! -d lib) mkdir lib&#xA;&#xA;rm armv7/*.a&#xA;&#xA;make clean&#xA;&#xA;./configure --disable-network --disable-mpegaudio-hp --disable-lpc --disable-vaapi &#xA;--disable-vdpau --disable-hwaccels --disable-mmx --disable-mmx2 --disable-sse &#xA;--disable-ssse3 --disable-avx --disable-amd3dnow --disable-amd3dnowext --disable-vis &#xA;--disable-mmi --disable-doc --disable-yasm --disable-ffmpeg --disable-ffplay &#xA;--disable-ffprobe --disable-ffserver --disable-rdft --disable-dxva2 --disable-encoders &#xA;--disable-decoders --enable-decoder=h264 --disable-bsfs --disable-protocols &#xA;--disable-indevs --disable-outdevs --disable-devices --disable-filters --disable-demuxers --enable-demuxer=h264 &#xA;--disable-muxers --disable-parsers --enable-parser=h264 --enable-cross-compile --arch=arm &#xA;--target-os=darwin &#xA;--cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2 --as=&#x27;gas-preprocessor/gas-preprocessor.pl /Aplications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2&#x27; &#xA;--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk --cpu=cortex-a8 &#xA;--extra-cflags=&#x27;-pipe -Os -gdwarf-2 -issysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk -m${thumb_opt:-no-thumb} &#xA;-mthumb-interwork&#x27; --extra-ldflags=&#x27;-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk&#x27; --enable-pic&#xA;&#xA;&#xA;make&#xA;&#xA;mv libavcodec/libavcodec.a armv7/&#xA;mv libavdevice/libavdevice.a armv7/&#xA;mv libavformat/libavformat.a armv7/&#xA;mv libavutil/libavutil.a armv7/&#xA;mv libswscale/libswscale.a armv7/&#xA;&#xA;rm lib/*.a&#xA;&#xA;cp armv7/*.a lib/&#xA;

    &#xA;&#xA;

    But i get this error :

    &#xA;&#xA;

    &#xA;

    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2 is unable to create an executable file.&#xA; C compiler test failed.

    &#xA;

    &#xA;&#xA;

    I looked all over the Internet. I have read all the posts on stackoverflow about this but none helped me. Please tell me what i'm doing wrong and please don't post me links : trust me, i saw them all !

    &#xA;

  • Big problems while compiling FFMPEG for iOS5

    7 juin 2013, par Vlad Bogdan

    I'm trying to compile the ffmpeg library for iOS5. I tried different options but none works.

    I downloaded this : https://github.com/ciphor/ffmpeg4ios .

    I tried the original build_armv7 but it didn't work. I edited the build_arm7 file and now it looks like this :

    #!/bin/tcsh -f

    if (! -d armv7) mkdir armv7
    if (! -d lib) mkdir lib

    rm armv7/*.a

    make clean

    ./configure --disable-network --disable-mpegaudio-hp --disable-lpc --disable-vaapi
    --disable-vdpau --disable-hwaccels --disable-mmx --disable-mmx2 --disable-sse
    --disable-ssse3 --disable-avx --disable-amd3dnow --disable-amd3dnowext --disable-vis
    --disable-mmi --disable-doc --disable-yasm --disable-ffmpeg --disable-ffplay
    --disable-ffprobe --disable-ffserver --disable-rdft --disable-dxva2 --disable-encoders
    --disable-decoders --enable-decoder=h264 --disable-bsfs --disable-protocols
    --disable-indevs --disable-outdevs --disable-devices --disable-filters --disable-demuxers --enable-demuxer=h264
    --disable-muxers --disable-parsers --enable-parser=h264 --enable-cross-compile --arch=arm
    --target-os=darwin
    --cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2 --as=&#39;gas-preprocessor/gas-preprocessor.pl /Aplications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2&#39;
    --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk --cpu=cortex-a8
    --extra-cflags=&#39;-pipe -Os -gdwarf-2 -issysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk -m${thumb_opt:-no-thumb}
    -mthumb-interwork&#39; --extra-ldflags=&#39;-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk&#39; --enable-pic


    make

    mv libavcodec/libavcodec.a armv7/
    mv libavdevice/libavdevice.a armv7/
    mv libavformat/libavformat.a armv7/
    mv libavutil/libavutil.a armv7/
    mv libswscale/libswscale.a armv7/

    rm lib/*.a

    cp armv7/*.a lib/

    But i get this error :

    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2 is unable to create an executable file.
    C compiler test failed.

    I looked all over the Internet. I have read all the posts on stackoverflow about this but none helped me. Please tell me what i'm doing wrong and please don't post me links : trust me, i saw them all !