
Recherche avancée
Autres articles (34)
-
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 ) (...) -
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 (4280)
-
avcodec/pnm : skip reading trailing bytes in get_pnm()
1er août 2019, par Michael Niedermayeravcodec/pnm : skip reading trailing bytes in get_pnm()
None of the keys we support is that long and other keys
lead to decoder failure. None of the values is expected
to be longer, they are all numbers or short keywords.This simplifies the code
Fixes : Timeout (9sec->43ms)
Fixes : 15177/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PAM_fuzzer-5080556716425216Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
FFmpeg av_read_frame not reading frames properly ?
16 juin 2019, par Sir DrinksCoffeeALotAlright, so I’ve downloaded some raw UHD sequences in .yuv format and encoded them with ffmpeg in .mp4 container (h264 4:4:4, 100% quality, 25fps). When i use ffprobe to find out how many frames are encoded i get 600, so that’s 24 secs of video.
BUT, when i run those encoded video sequences through
av_read_frame
i only get like 40-50% of frames processed beforeav_read_frame
returns error code-12
. So I’m wild guessing that there are some data packages in middle of the streams which get read byav_read_frame
and forces a function to return-12
.What my questions are, how should i deal with this problem so i can encode full number of frames (600) ? When
av_read_frame
returns value different from0
should iav_free_packet
and proceed to read next frame ? Sinceav_read_frame
returns values< 0
for error codes, which error code is used forEOF
so i can insulate end of file code ? -
FFmpeg : Reading data from 2 FIFO
21 septembre 2019, par user3497661I am working with FFmpeg 4.1.3. I am trying to read video from one named pipe and audio from another named pipe and creating a new output file. There are 2 RTP processes reading data over the network and writing it to these pipes.
I am using following commandline
ffmpeg -report -i /tmp/audio_pipe.pcmu -i /tmp/video_pipe.h264 -y output.ts
When I try to receive from individual pipes,
(ffmpeg -report -i /tmp/audio_pipe.pcmu -y output.ts), it works but using 2 pipes in the same command line seems to block.
I found some 7 year old ticket https://trac.ffmpeg.org/ticket/1663. It says that multiple pipes do not work with FFmpeg.I would like to know if input using multiple pipes works with FFmpeg now and if yes, how to achieve it.