
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (47)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6373)
-
Encode mjpeg files from within an iOS app
9 mai 2017, par Ricardo Sanchez-SaezI’m trying to encode a video file with the
mjpeg
codec on iOS. Basically, I’m trying to replicate what this command doesffmpeg -i recording.mp4 -vsync vfr -q:v 9 recording.mjpeg
from within an app.
Is there an easy way to do this ?
I’m looking at using the low level ffmpeg API to do this like in this example, but I was wondering if somebody knows of a simpler way.
I have also access to the individual video frames in
CMSampleBufferRef
format, in case that makes it easier.AVAssetWriter
doesn’t seem to supportmjpeg
, which is unfortunate, as that would make things super simple. -
ffmpeg packet data from ts file
16 avril 2013, par user2285642I am kinda new to ffmpeg, but did enough homework before posting this question. I have a ts file. I want to extract individual packets from it(both audio and video). I am able to generate output file using the below command
ffmpeg.exe -i sample.ts -y -c copy -map p:1 output.h264
However, this link is the closest to what I m looking for. ( He uses something called tsinfo.exe which is out of my scope).
So, is there any way in ffmpeg to extract packet data from a ts file ?
Anyone ?
Thanks
-
How to Create video from selected images of a folder using FFMPEG ?
20 février 2018, par Hadley V SunnyFor the time being I am doing
ProcessStartInfo ffmpeg = new ProcessStartInfo();
ffmpeg.CreateNoWindow = false;
ffmpeg.UseShellExecute = false;
ffmpeg.FileName = "e:\ffmpeg\ffmpeg.exe";
ffmpeg.Arguments = "for file in (D:\\Day\\*.jpg); do ffmpeg -i \"$file\" -vf fps=1/60 -q:v 3 \"D:\\images\\out.mp4\"; done;";
ffmpeg.RedirectStandardOutput = true;
Process x = Process.Start(ffmpeg);Here I’m getting exception saying system cannot find specified file.
For time being I’m considering all the files in D :\Day*.jpg but actually I need to query individual files from a list.Where am I wrong in the above scenario ?