
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (83)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6870)
-
ffmpeg encoding plays very fast. Audio.mp4 and Video.mp4 work, but both together don't
25 février 2013, par Peter.OIn both steps 3 and 4 below, the
.mp4
plays normally. However, although I've used what seems to be the same settings in the last step (audio + video), that step does not work. The video plays more than 10 times too fast... also the audio does not play.The ffmpeg messages for step 5 show that it has included audio.
Output #0, mp3, to '/tmp/test.mp4':
Stream #0.0: Video: libx264, yuv420p, 720x480, q=2-31, 90k tbn, 23.98 tbc
Stream #0.1: Audio: libmp3lame, 48000 Hz, stereo, s16, 128 kb/sSubsequently running
ffmpeg -i
shows no trace of the audio, but it does report on the video... What have I missed, to get it muxed properly ?...#!/bin/bash
# 1. create Audio
wine avs2pipe.exe audio "$src_avs" >"$temp_pcm"
# 2. create Video
wine avs2yuv.exe "$src_avs" - |
x264 --stdin y4m --output "$temp_h264" - 2>/dev/null
# 3. This works. (audio only)
# encode `audio.mp4
ffmpeg -acodec pcm_s16le -f u16le -ac 2 -ar 48000 -i "$temp_pcm" \
-acodec libmp3lame -f mp3 -ar 48000 -ab 128k -y "$audio_mp4"
# 4. This works. (video only)
# encode `video.mp4
ffmpeg -i "$temp_h264" \
-vcodec copy -y "$video_mp4"
# 5. This DOES NOT work! It plays very fast.
# encode `final.mp4'
ffmpeg -acodec pcm_s16le -f u16le -ac 2 -ar 48000 -i "$temp_pcm" \
-i "$temp_h264" \
-acodec libmp3lame -f mp3 -ar 48000 -ab 128k \
-vcodec copy \
-y "$final_mp4" -
Revision f297504f2d : Re-work configure interface for encoding based on external mi This commit refin
14 juillet 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/vp9_cx_iface.c
Modify /vpx/vpx_encoder.h
Modify /vpxenc.c
Re-work configure interface for encoding based on external miThis commit refines the configuration interface for encoding
process based on external mode info. It allows the vpxenc to read
the external file name from command line, and to produce warning
message when necessary.Change-Id : I109d02ea9e6e418d00378d512ed9ab9bb0770dbd
-
RTSP authentification through ffmpeg/ffplay doesn't work because of special symbols in the password
26 octobre 2018, par Eugene MartI have run into a problem while trying to receive a video from an IP-camera using ffplay.
My rtsp request looks like this : rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp
And ffplay/ffmpeg returns an 401 Unauthorized error code. I am absolutely sure that the credentials are correct. The problem is caused by the password (M3%LOL$KEKfp), which consists of special symbols like %, and #. Is there any way to make it work without changing the password ?
I tried using quote marks like this ffplay "rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp", and it didn’t have any ideas ?
PS : I’m using windows. Tried both CMD and PowerShell