
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (31)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (4559)
-
Encode raw PCM to aac using ffmpeg native AAC
10 avril 2012, par newentryI am trying to convert raw PCM to aac .So i am trying to achieve it through ffmpeg.
My ffmepg configuration
—enable-cross-compile —arch=arm —cpu=armv6 —enable-asm —target-os=linux —disable-stripping —enable-neon —enable-version3 —disable-shared —enable-static —enable-gpl —enable-memalign-hack —cc=arm-linux-androideabi-gcc —ld=arm-linux-androideabi-ld —extra-cflags='-fPIC -DANDROID -D_thumb_ -mthumb -Wfatal-errors -Wno-deprecated -marm -march=armv6 ' —disable-everything —enable-encoder=aac —enable-decoder=h264 —enable-hwaccels —disable-ffmpeg —disable-ffplay —disable-ffprobe —disable-ffserver —disable-network —enable-filter=buffer —enable-filter=buffersink —disable-demuxer=v4l —disable-demuxer=v4l2 —disable-indev=v4l —disable-indev=v4l2
avcodec_find_encoder(CODEC_ID_AAC) find's the AAC encoder succesfully.
audio_context= avcodec_alloc_context()
avcodec_open(audio_context, audio_encoder) failed to open aacany idea ?
-
ffmpeg - operation not permitted error while conversion
20 février 2012, par JomoosI am developing an android app. My requirement is that to implement an rtsp streaming server on android. It has to live stream video and audio captured using
MediaRecorder
. Another requirement is that I have to use live555 as the streaming server. What I get fromMediaRecorder
is in MP4 or 3GP format. live555 cannot able to stream both. But it can stream audio if I recorded it only in 'RAW_AMR' format. Since live555 support 'mpg' format for streaming, I decided to put someone in middle who can convert 'mp4' or '3gp' to 'mpg', and I chose ffmpeg.I have ported live555 and ffmpeg to android. ffmpeg is able to convert the file recorded by
MediaRecorder
once it is finished. But the problem is that ffmpeg cannot be able to do it concurrently. That is, ffmpeg is not able to convert the file while recording. It shows anOperation not permitted
error. I tried the same on my linux machine, using VLC to record instead ofMediaRecorder
on android. The result is same. ffmpeg is able to convert once the recording is finished, and not able to do the same while recording.Here is the ffmpeg command I issued on my linux box :
ffmpeg -v 9 -loglevel 99 -i test.mp4 test.mpg
Where
test.mp4
is the file to which VLC is recording inmp4
format. andtest.mpg
is my destination file. The following is the output by ffmpeg on terminal.ffmpeg version 0.8.9, Copyright (c) 2000-2011 the FFmpeg developers
built on Feb 1 2012 18:29:27 with gcc 4.6.2 20111027 (Red Hat 4.6.2-1)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --enable-bzlib --enable-libcelt --enable-libdc1394 --enable-libdirac --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-x11grab --enable-avfilter --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
libavutil 51. 9. 1 / 51. 9. 1
libavcodec 53. 8. 0 / 53. 8. 0
libavformat 53. 5. 0 / 53. 5. 0
libavdevice 53. 1. 1 / 53. 1. 1
libavfilter 2. 23. 0 / 2. 23. 0
libswscale 2. 0. 0 / 2. 0. 0
libpostproc 51. 2. 0 / 51. 2. 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x1672600] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x1672600] ISO: File Type Major Brand: isom
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x1672600] moov atom not found
test.mp4: Operation not permittedWould anyone please tell me what is causing the problem ? Or is the scenario above is possible by ffmpeg. That is, is ffmpeg is able to do the conversion at the same time as that of recording ? If it is not possible by ffmpeg, would you please suggest any alternative solutions ?
NOTE : I am putting a
C
tag because if it possible by some tweaking in C on ffmpeg, I am ready to do that(I want the solution that badly). But please provide some pointers to the right direction. -
build : Generalize yasm/nasm-related variable names
8 octobre 2016, par Diego Biurrunbuild : Generalize yasm/nasm-related variable names
None of them are specific to the YASM assembler.
- [DBH] Makefile
- [DBH] avbuild/arch.mak
- [DBH] configure
- [DBH] libavcodec/x86/Makefile
- [DBH] libavcodec/x86/dcadsp_init.c
- [DBH] libavcodec/x86/fmtconvert_init.c
- [DBH] libavcodec/x86/h264_qpel.c
- [DBH] libavcodec/x86/hpeldsp_init.c
- [DBH] libavcodec/x86/mpegaudiodsp.c
- [DBH] libavcodec/x86/qpeldsp_init.c
- [DBH] libavcodec/x86/rv40dsp_init.c
- [DBH] libavcodec/x86/vc1dsp_init.c
- [DBH] libavcodec/x86/videodsp_init.c
- [DBH] libavcodec/x86/vp8dsp_init.c
- [DBH] libavcodec/x86/vp9dsp_init.c
- [DBH] libavfilter/x86/Makefile
- [DBH] libavfilter/x86/vf_gradfun_init.c
- [DBH] libavfilter/x86/vf_hqdn3d_init.c
- [DBH] libavresample/x86/Makefile
- [DBH] libavutil/x86/Makefile
- [DBH] libavutil/x86/cpu.c
- [DBH] libswscale/x86/Makefile
- [DBH] libswscale/x86/rgb2rgb_template.c
- [DBH] tests/checkasm/Makefile
- [DBH] tests/checkasm/checkasm.h