
Recherche avancée
Autres articles (69)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8555)
-
How to configure ffmpeg just to play RTSP videos
28 février 2018, par Anuran BarmanI have successfully compiled ffmpeg for android and everything is working fine.
I have made specific build for each architecture and even with that it’s 9.7-9.9MB in
debug version
.My sole target is just to play
RTSP video
withauthentication
.What should be the command line options for this while configuring ?
my current script looks like this
./configure \
--prefix=$prefix \
--pkg-config=/usr/bin/pkg-config \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-avdevice \
--disable-symver \
--cross-prefix=$toolchain/bin/$crossPrefix \
--target-os=android \
--arch=arm \
--enable-cross-compile \
--sysroot=$sysroot \
--enable-network \
--extra-cflags="$mArchFlag" \
--extra-ldflags="$extraLDFlags" -
Unable to play clear content packaged using ffmpeg mpeg-dash -single_file option
20 novembre 2017, par diSAble to package the mpeg-dash clear content into a single file using -single_file option but unable to play the content.
ffmpeg command :
ffmpeg -y -loglevel info -loglevel verbose -err_detect careful -analyzeduration 8000000 -probesize 4000000 -rtbufsize 300000 -flush_packets 0 -fflags +genpts+discardcorrupt -f mpegts -i Sample_Input.ts -i -map 0:p:1:0 -c copy -f dash -window_size 24 -min_seg_duration 4 -use_timeline true -use_template true -single_file true live.mpd
Able to package and play using below command :
MP4Box -dash 150000 -dash-profile onDemand -segment-name chunk-stream clear.mp4
Am I Missing any parameters while packaging with ffmpeg command ?
FFMPEG latest code from https://git.ffmpeg.org/ffmpeg.git
commit :- ce001bb8fc6677541c401a614e05e5058d58dde1Thank you in advance.
-
Firefox doesn't play mp4 file in HTML5 video
21 janvier 2016, par DeveloperI recorded a video with my mobile which had the format ".mp4". Now if I load that video in HTML5 video tag, I get an error
HTTP "Content-Type" of "video/3gpp" is not supported.
Why does Firefox consider the file as3gpp
although it is anmp4
file ?
If I log the file properties when it is loaded on to browser, I see the following{ name: "test.mp4", lastModified: 1434536249000, lastModifiedDate: Date 2015-06-17T10:17:29.000Z, size: 41151959, type: "video/mp4" }
This means firefox identifies the type as
mp4
only. But doesn’t play it giving the errorHTTP "Content-Type" of "video/3gpp" is not supported.