
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (72)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (11134)
-
avformat/mxf : add platform local tag
2 février 2021, par Limin Wangavformat/mxf : add platform local tag
Please check the string of platform with below command :
./ffmpeg -i ../fate-suite/mxf/Sony-00001.mxf -c:v copy -c:a copy out.mxf
./ffmpeg -i out.mxf
....
application_platform : Lavf (linux)Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>- [DH] configure
- [DH] libavformat/mxfenc.c
- [DH] tests/ref/fate/copy-trac4914
- [DH] tests/ref/fate/mxf-d10-user-comments
- [DH] tests/ref/fate/mxf-opatom-user-comments
- [DH] tests/ref/fate/mxf-reel_name
- [DH] tests/ref/fate/mxf-user-comments
- [DH] tests/ref/fate/time_base
- [DH] tests/ref/lavf/mxf
- [DH] tests/ref/lavf/mxf_d10
- [DH] tests/ref/lavf/mxf_dv25
- [DH] tests/ref/lavf/mxf_dvcpro50
- [DH] tests/ref/lavf/mxf_opatom
- [DH] tests/ref/lavf/mxf_opatom_audio
-
m3u8 hls stream to wav in one step with ffmpeg
17 février 2021, par Marinos KI'm using to ffmpeg to extract 10" snippets in WAV audio from a m3u8 hls stream in two steps like this :


ffmpeg -i XXXX.m3u8 -t 10 -c copy -bsf:a aac_adtstoasc -vn output.acc
ffmpeg -i output.acc output.wav



How can I do it in just one step to avoid the intermediate file and maybe speed the process ?


I tried directly encoding the output with something like
-c:a pcm_s24le
, but this fails with a 'codec not supported by bitstream filter' error.

I also tried piping the output of the first command to the next like this :


ffmpeg -i XXX.m3u8 -t 10 -c copy -bsf:a aac_adtstoasc -vn pipe: | ffmpeg -i pipe: output.wav



and I get an 'pipe: : Invalid data found when processing input' error.


any indications of what am I doing wrong, or any other ideas ?


-
Merge Audio and Video on Uno Platform
27 mars 2021, par trungnt2910I am trying to merge an audio stream and a video stream into a single file, on the Uno Platform, particularly for WebAssembly.

I already know that the normal, desktop-only way is by callingffmpeg
, and I also found a C# only way for UWP here.

However, the code usedWindows.Media.Editing
which is not implemented in Uno.

I know there is affmpeg
library port for WASM here, but I don't know how to call it from my Uno web application.

So are there any ways to merge an audio stream and a video stream to a single file, on the Uno platform for WASM ?