
Recherche avancée
Autres articles (65)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (8927)
-
Recursively converting all files in folder using FFMpeg and placing them in different output folder
10 janvier 2020, par Cecila TarjonI want to remux some videos to MP4 so that I can play them on my Roku as well as my Plex. I have reviewed the approaches suggested in the answers to the questions
How would I write a batch file to run an ffmpeg command on an entire directory ? and How do you convert an entire directory with ffmpeg ?, but this doesn’t quite solve my problem.I am currently using the command prompt to navigate to the directory in question and then running the command line :
for %i in (*.mkv) do c:\ffmpeg\bin\ffmpeg -i "%i" -c copy -map 0 %userprofile%\documents\Plex\mp4\%~ni.mp4"
I would like to be able to run this from a higher level (i.e.,
%userprofiles%\Documents\Plex\MKV
instead of...\mkv\show\season
) and have it run on all subfolders.I would also ideally like for it to output to the
mp4\show\season
level for the same place it gets them from.How can I accomplish this ?
Once I know it will work in a regular command window, I will be converting it to a batch file so I can run as needed.
-
Can someone please explain to me why is this happening
17 juillet 2015, par user2270995I am trying to show the frame decoded in FFMPEG in a
UIImageView
.The method given belowstepFrame
is called at the interval of 1/30 second. ThesetImage
method does the conversion for the frame and sets the image for ImageView.Now if i call
setImage
insidestepFrame
after frame has finished decoding the image doesn’t show in the ImageView. But if i callsetImage
after callingstepFrame
the image shows fine in ImageView.- (BOOL)stepFrame
{
// AVPacket packet;
int frameFinished=0;
while (!frameFinished && av_read_frame(pFormatCtx, &packet) >=0 )
{
// Is this a packet from the video stream?
if(packet.stream_index==videoStream)
{
// Decode video frame
avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet);
}
if (frameFinished) // this block of code if my source of confusion
{
[self setImage];
}
if (packet.stream_index==audioStream)
{
// NSLog(@"audio stream");
// audio stuff
}
}
return frameFinished!=0;
}
-(void)setImage
{
if (!pFrame->data[0])
return;
[self convertFrameToRGB]; // uses sws_scale to write the converted frame to picture
imageview.image = [self imageFromAVPicture:picture width:outputWidth height:outputHeight];
} -
avformat/ivfenc : Set the "number of frames" in IVF header
3 juillet 2023, par Dai, Jianhui Javformat/ivfenc : Set the "number of frames" in IVF header
Should set "number of frames" to bytes 24-27 of IVF header, not
duration.
It is described by [1], and confirmed by parsing all IVF files in [2].This commit also updates the md5sum of refs to pass fate-cbs.
[1] Duck IVF - MultimediaWiki
https://wiki.multimedia.cx/index.php/Duck_IVF[2] webm/vp8-test-vectors
https://chromium.googlesource.com/webm/vp8-test-vectorsSigned-off-by : Jianhui Dai <jianhui.j.dai@intel.com>
Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>- [DH] libavformat/ivfdec.c
- [DH] libavformat/ivfenc.c
- [DH] tests/ref/fate/cbs-vp9-vp90-2-03-deltaq
- [DH] tests/ref/fate/cbs-vp9-vp90-2-06-bilinear
- [DH] tests/ref/fate/cbs-vp9-vp90-2-09-lf_deltas
- [DH] tests/ref/fate/cbs-vp9-vp90-2-10-show-existing-frame
- [DH] tests/ref/fate/cbs-vp9-vp90-2-10-show-existing-frame2
- [DH] tests/ref/fate/cbs-vp9-vp90-2-segmentation-aq-akiyo
- [DH] tests/ref/fate/cbs-vp9-vp90-2-segmentation-sf-akiyo
- [DH] tests/ref/fate/cbs-vp9-vp90-2-tiling-pedestrian
- [DH] tests/ref/fate/cbs-vp9-vp91-2-04-yuv440
- [DH] tests/ref/fate/cbs-vp9-vp91-2-04-yuv444
- [DH] tests/ref/fate/cbs-vp9-vp92-2-20-10bit-yuv420
- [DH] tests/ref/fate/cbs-vp9-vp93-2-20-10bit-yuv422
- [DH] tests/ref/fate/cbs-vp9-vp93-2-20-12bit-yuv444