
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (50)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (3755)
-
RTP H263 frames to FFMPEG
25 août 2011, par Pierluigi CifaniI've been trying to develop an RTP demuxed based on RFC 2190 to pass to the FFMPEG (libavcodec) H263 packets in Mode-A.
However I can't seem to make the FFMPEG happy with the I-frames I am feeding it with. With fragmented frames (such as a large I-frame) I am rebuilding the whole frame following RFC 2190 and the "Marker" rules and passing it to the Libavcodec layer. However video looks buggy and it looks that I have to add some kind of header to the beginning of each frame before passing it to the Libavcodec layer. Errors like this are coming out all the time :
illegal dc 128 at 0 3
illegal ac vlc code at 0x3
Error at MB: 69
illegal ac vlc code at 4x15
Error at MB: 349
concealing 379 DC, 379 AC, 379 MV errorsI have previously built an H264 over RTP demuxer and I had to add
0x00 0x00 0x00 0x01 0x21
header to every fragment of I Frame in order for it to be decoded correctly. But I can't find anywhere documentation on how to do this with H263.Maybe you could lend me a hand ?
Cheers and thanks a lot
-
Convert mp4 video to m3u8 format with C# ffmpack
26 février 2020, par İlyas ARUCAI can convert the file with the extension mp4 in my hand from the code line related to PowerShell to m3u8 format.
ffmpeg -i inputVideo.mp4 -profile:v baseline -level 3.0 -s 960x540 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls outputVideo.m3u8
But I want to automate this process using C#. I did as written in the document on Microsoft’s site, but I could not add the relevant parameters. Has anyone done anything like this before ? or how can I follow a path.
-
FFMpeg - How to apply a scene select filter on an area of the frames
29 mai 2019, par Tristan EverittThis is a follow up question to :
Using FFMPEG : How to do a Scene Change Detection ? with timecode ?
Using FFmpeg to do scene change detection, the filter
select=gt(scene,0.3)
can be used to select the frames whose scene detection score is greater then 0.3.Question : In FFmpeg, is possible to extend the filter so that only a scene select is applied on a defined area of the video frames ? In other words, using an example, how can one do a scene change detection of only the right hand side of the video frames ?