
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (84)
-
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 ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (7163)
-
avformat_open_input() fails to open url
7 mai 2018, par subhaI tried to open URL using avformat_open_input API function.
Initially, I got a warning like,Using network protocols without global network initialization. Please use avformat_network_init(), this will become mandatory later.
After initializing avformat_network_init(), I am getting a negative return value for avformat_open_input() function call.
INPUT URL : https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8
Can anyone please help me to find the issue ?
-
How to concat two video from ffmpeg ?
18 janvier 2019, par Avneesh KumarI have use nodejs and var ffmpeg = require(’ffmpeg’) ; plugin
ffmpeg() .mergeAdd(’C ://Users//DCL43//Desktop//video12//13.mp4’)
.mergeAdd(’C ://Users//DCL43//Desktop//video12//12.mp4’)
.output(’C ://Users//DCL43//Desktop//video12//outputnewdata12.mp4’)
.run() ;got error -
Object code : 100, msg : "The input file path can not be empty"
app.js:85
code:100
msg :"The input file path can not be empty"
proto:Object constructor : , defineGetter : , defineSetter : , … -
DirectShow RTSP SourceFilter with MPEG-4 Video Stream
20 mars 2021, par NovalisI create a simple direct show source filter using FFmpeg.I read rtp packets from RTSP source and give them to decoder. It works for h264 stream.



MyRtspSourceFilter[H264 Stream] ---> h264 Decoder --> Video Renderer




The bad news is that it does not work for MPEG-4. I can able to connect my rtsp source filter with MPEG-Decoder. I got no exception but video renderer does not show anything. Actually just show one frame then nothing [just stop]... Decoders and Renderers are 3rd party so i can not debug them.



MyRtspSourceFilter[MP4 Stream] ---> MPEG-4 Decoder --> Video Renderer




I can able to get rtp packets from MPEG-4 RTSP Source using FFmpeg sucessfully.There is no problem with it.





It seems that i have not set something(?) in my Rtsps Source
 Filter which is not necessary for H264 stream but may be important for
 MPEG-4 stream





What may cause this h264 stream and MPEG-4 stream difference in a direct show rtsp source filter ? Any ideas.



More Info :



— First i try some other rtsp source filters for MPEG-4 Stream...Although my rtsp source is same i see different subtypes in their pin connections.



— Secondly i realy get suspicious if the source is really MPEG-4 SO i check with FFmpeg...FFmpeg gives the source codec id as "CODEC_ID_MPEG4".



Update : 
[ Hack ]



I just set m_bmpInfo.biCompression = DWORD('xvid') it just worked fine...But it is static. How to dynamically get/determine this value using ffmpeg or other ways...