
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
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 (13)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (2075)
-
How to Extract KLV data from video using python
18 août 2022, par Raje NarkarSo I have some video files with KLV data I need to extract that data so current I'm using https://github.com/shacharmo/KlvOverMpegTSExtractor this code for doing this but it work with http://samples.ffmpeg.org/MPEG2/mpegts-klv/Day%20Flight.mpg only with this video file.
When I use my file nothing happen, So I try By changing the
universal_key
to random key from my payload but I don't get proper O/P.

I need to solve this with any possible way.


-
FFMPEG m3u8 encoding change extension of TS files to something else
1er avril 2021, par DilshanI'm using below command to encrypt a MP4 video into a m3u8 type.


const cmd = "ffmpeg";
const args = [
 "-i",
 `${input}`,
 "-c",
 "copy",
 "-bsf:v",
 "h264_mp4toannexb",
 "-hls_list_size",
 "0",
 "-hls_time",
 "10",
 "-hls_key_info_file",
 "enc.keyinfo",
 `output/${outputFileName}.m3u8`,
];



This works and output the data.but is there any possible way to tell ffmpeg to not add
.TS
extensions to the playlist items ?

I manually update one of the playlist item in
m3u8
file with some random file extension and it works.

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:12
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-KEY:METHOD=AES-128,URI="http://localhost/key/video.key",IV=0x00000000000000000000000000000000
#EXTINF:10.666667,
somerandomname // <-- Here I change it and when I play in a HLS player it works. 
#EXTINF:11.666667,
output1.ts
#EXT-X-ENDLIST



Can I do this with the above command ?


-
lavc/vaapi_decode : fix the build failure when hevc_vaapi is disabled
12 avril 2020, par Linjie Fulavc/vaapi_decode : fix the build failure when hevc_vaapi is disabled
Verified with ./configure —enable-vaapi —disable-hwaccel=hevc_vaapi
Failure reported in :
http://fate.ffmpeg.org/report.cgi?time=20200401135031&slot=x86_64-archlinux-gcc-randomSigned-off-by : Linjie Fu <linjie.fu@intel.com>