Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (48)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10664)

  • Fix silly undefined"soundID" loaded debug output message (now says SMSound._onload() as previously.) Re-appeased the jslint gods, removed unused variables and two-statement reverse loop (for i=x ; i— ;) { } trickery.

    16 janvier 2012, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Fix silly undefined"soundID" loaded debug output message (now says SMSound._onload() as previously.) Re-appeased the jslint gods, removed unused variables and (...)

  • static ffmpeg build error : dyld library not loaded libx264.164.dylib

    17 mars 2023, par Martin

    I am trying to build ffmpeg on my macos 10.13 computer. When I run my buildscript.sh file, I get an ffmpeg and ffprobe output, but when I try to use that final build ffmpeg file on a different macbook, I get an error saying the x264 library was not found :

    


    //running ffmpeg on macbook 2:
martins-iMac:Downloads martin$ chmod +x ffmpeg 

martins-iMac:Downloads martin$ ./ffmpeg 

dyld: Library not loaded: /usr/local/opt/x264/lib/libx264.164.dylib

  Referenced from: /Users/martin/Downloads/./ffmpeg

  Reason: image not found

Abort trap: 6


    


    When I build ffmpeg using my script on macbook1, I made sure to install x64 with brew install x264, but like the error says above, I think this x264 library is not being incuded in my static ffmpeg build, is there any flag im missing in my ./configure part, or do I need to specify the filepath for my local libx264 install location as a part of my build script ?

    


    buildscript.sh :

    


    #!/bin/bash

set -e

CWD=$(pwd)
PACKAGES="$CWD/packages"
WORKSPACE="$CWD/workspace"
ADDITIONAL_CONFIGURE_OPTIONS=""


mkdir -p "$PACKAGES"
mkdir -p "$WORKSPACE"

FFMPEG_TAG="$1"
FFMPEG_URL="https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/74c4c539538e36d8df02de2484b045010d292f2c.tar.gz"

FFMPEG_ARCHIVE="$PACKAGES/ffmpeg.tar.gz"

if [ ! -f "$FFMPEG_ARCHIVE" ]; then
    echo "Downloading tag ${FFMPEG_TAG}..."
    curl -L -k -o "$FFMPEG_ARCHIVE" "$FFMPEG_URL"
fi

EXTRACTED_DIR="$PACKAGES/extracted"

mkdir -p "$EXTRACTED_DIR"

echo "Extracting..."
tar -xf "$FFMPEG_ARCHIVE" --strip-components=1 -C "$EXTRACTED_DIR"

cd "$EXTRACTED_DIR"

echo "Building..."

# Min electron supported version
MACOS_MIN="10.10"

./configure $ADDITIONAL_CONFIGURE_OPTIONS \
    --pkgconfigdir="$WORKSPACE/lib/pkgconfig" \
    --prefix=${WORKSPACE} \
    --pkg-config-flags="--static" \
    --extra-cflags="-I$WORKSPACE/include -mmacosx-version-min=${MACOS_MIN}" \
    --extra-ldflags="-L$WORKSPACE/lib -mmacosx-version-min=${MACOS_MIN}" \
    --extra-libs="-lpthread -lm" \
        --enable-static \
        --disable-securetransport \
        --disable-debug \
        --disable-shared \
        --disable-ffplay \
        --disable-lzma \
        --disable-doc \
        --enable-version3 \
        --enable-pthreads \
        --enable-runtime-cpudetect \
        --enable-avfilter \
        --enable-filters \
        --disable-libxcb \
        --enable-gpl \
        --disable-libass \
        --enable-libx264 

make -j 4
make install

otool -L "$WORKSPACE/bin/ffmpeg"
otool -L "$WORKSPACE/bin/ffprobe"

echo "Building done. The binaries can be found here: $WORKSPACE/bin/ffmpeg $WORKSPACE/bin/ffprobe"

mkdir ffmpeg-mac/ 
cp -r "$WORKSPACE/bin/" "$CWD/ffmpeg-mac/"

rm -rf "$PACKAGES"
rm -rf "$WORKSPACE"

exit 0



    


  • FFMPeg : how to establish a mms connection on the iPhone ?

    29 décembre 2011, par Winston

    I'd like to use ffmpeg to connect to a live stream, using the mms:// protocol and afterwards decode the WMA file to play on the iPhone.

    Which one of the following function should I use ? And how do I use it ?

    1) MMSContext http://ffmpeg.org/doxygen/trunk/structMMSContext.html

    or

    2) URLContext http://ffmpeg.org/doxygen/trunk/structURLContext.html