
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (92)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (6718)
-
avformat/http: add "Opening" info logging to ff_http_do_new_request
13 décembre 2017, par Aman Gupta -
failed to read iv from the auxiliary info
9 décembre 2017, par diSPassing encryption key and kid to mp4 muxer to encrypt the dash segments. With
ffmpeg
command generating dash single file for playback. But when I play using ffplay I seefailed to read the IV from auxiliary info
ffmpeg -y -f mp4 -i SampleVideo_1280x720_20mb.mp4 -map 0:v:0 -c copy -f dash -encryption_scheme cenc-aes-ctr -encryption_key <key> -encryption_kid <kid> -min_seg_duration 4000000 -use_timeline 1 -use_template 1 -single_file 1 ./enc.mpd
ffplay enc-stream0.m4s -decryption_key <key>
</key></kid></key>I get the error
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fa3040008c0] failed to read iv from the
auxiliary infoOn side note : don not see playback error when single file generated using mp4 muxer alone. Any inputs ? thanks...
-
ffprobe how to retrieve both audio and video info and output to single line ?
16 novembre 2018, par gregmI can use the following to retrieve the audio and video codec and the video frame height :
ffprobe -v quiet -show_entries stream=index,codec_name,height -of csv input.mp4
But the output is on two lines and includes text that I don’t need like so :
stream,0,h264,720
stream,1,mp3The only output I want is to be in the form of :
mp3,h264,720
I’ve tried using -show_entries twice in the same command line, but it ignores the first call every time. I’ve also tried using
ffprobe -v quiet -select_streams v -show_entries stream=codec_name,height, -select_streams a -show_entries stream=codec_name
but that doesn’t do anything.
How can I get the simplified output as specified above ?