
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (75)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP 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 (7994)
-
DIY video file streaming from linux/osx to iOS devices
27 septembre 2016, par sfactorThis is for a hobby project. I want to learn about video streaming and also create something that’s useful for me as well.
The project should be able to run a server on my macbook and a client on my iPad that will allow me to watch the videos I’ve got stored on my laptop without having to copy them in my iPad over my wifi.
I know there are solutions like Plex, Air Video etc. that allow me to do it. But since my goal is to practice writing some client/server code, I want to create something myself with the basic functionality of these apps.
I figured I’d probably need something like ffmpeg and Apple’s HTTP Live Streaming (HLS), but I don’t have a Apple developer account to be able to use it. I do have Xcode in my mac. So, some free 3rd party library for HLS or something equivalent. I also fond this tool called https://www.bento4.com.
How would I go about getting started with such an application and what are the libraries I could use to accomplish this ?
-
Error when compiling FAAC for iOS
6 novembre 2014, par 谢小进I want to compile
FAAC
for iOS, includingi386
,x86_64
,armv7
,armv7s
,arm64
. I am using this shell script and when I run it, onlyi386
andx86_64
are built. The current code is like this :#!/bin/sh
# OS X Mavericks, Xcode 5.1
set -ex
VERSION="1.28"
CURRPATH=`pwd`
SOURCE="faac-$VERSION"
DSTDIR="libfaac"
SDKVERSION="7.1"
ARCHS="i386 x86_64 armv7 armv7s arm64"
DEVELOPER="/Applications/Xcode.app/Contents/Developer"
rm -rf $DSTDIR
mkdir $DSTDIR
tar jxf $SOURCE.tar.gz
cd $SOURCE
for ARCH in $ARCHS; do
mkdir -p $CURRPATH/$DSTDIR/$ARCH
if [ $ARCH == "i386" -o $ARCH == "x86_64" ]; then
PLATFORM="iPhoneSimulator"
if [ $ARCH = "i386" ]; then
HOST="--host=i386-apple-darwin"
fi
else
PLATFORM="iPhoneOS"
HOST="--host=arm-apple-darwin"
fi
SDK="$DEVELOPER/Platforms/$PLATFORM.platform/Developer/SDKs/$PLATFORM$SDKVERSION.sdk"
IOSMV="-miphoneos-version-min=7.0"
export CC="$DEVELOPER/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
export CFLAGS="$IOSMV -arch $ARCH"
export LDFLAGS="$IOSMV -arch $ARCH -isysroot $SDK"
export LIBS="-L$SDK/usr/lib"
export CXXFLAGS="$IOSMV -arch $ARCH -I$SDK/usr/include"
./configure \
$HOST \
--prefix=$CURRPATH/$DSTDIR/$ARCH
make && make install && make clean
done
cd ..
mkdir -p $DSTDIR/lib
lipo -create `find $DSTDIR -name libfdk-aac.a` -output $DSTDIR/lib/libfdk-aac.a
cp -rf $DSTDIR/$ARCH/include $DSTDIR
for ARCH in $ARCHS; do
rm -rf $DSTDIR/$ARCH
doneCan somebody tell me why
armv7
,armv7s
,arm64
are not built correct ? If needed, where can I change them ? Maybe it could be like-host=
value. but I have used-host=armv7-apple-darwin
,-host=armv7s-apple-darwin
, and-host=arm64-apple-darwin
, it’s not correct either. -
How can I add multiple metadata in video using ffmpeg
17 janvier 2019, par Raghbendra NayakI am using command to add metadata in a video and its working fine.
ffmpeg -i '/var/www/html/public/uploads/wp-video/akka.mov' -metadata kKeyContentIdentifier='com.apple.quicktime.content.identifier' '/var/www/html/public/uploads/video-thumb/updated-akka.mov'
Now I want to add more than one meta data so Just pass the multiple meta like below but its not working
ffmpeg -i '/var/www/html/public/uploads/wp-video/akka.mov' -metadata kKeyContentIdentifier='com.apple.quicktime.content.identifier' -metadata kKeyStillImageTime = 'com.apple.quicktime.still-image-time' -metadata kKeySpaceQuickTimeMetadata = 'mdta' '/var/www/html/public/uploads/video-thumb/updated-akka.mov'
Can anyone tell me how can I add ?