
Recherche avancée
Autres articles (62)
-
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 (...) -
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (6298)
-
Saving highest quality video from video-capture card
23 décembre 2013, par DusteDI have a machine with 2x3 3ghz dual-core xeon and 4x10krpm scsi 320 disks in raid0.
The capture card is an osprey 560 64 bit pci card.
Operating system is currently Windows Server 2003.The video-stream that I can open with VLC using direct show is rather nice quality.
However, trying to save this video-stream without loss of quality has proven quite difficult,
using the h264 codec I am able to achieve a satisfying quality, however, all 4 cores jump to 100% load after a few second and then it start dropping frames, the machine is not powerful enough for realtime encoding. I've not been able to achieve satisfying mpeg1 or 4 quality, no matter which bitrate I set..Thing is, the disks in this machine are pretty fast even by todays standard, and they are bored.. I don't care about disk-usage, I want quality.
I have searched in vain for a way to pump that beautiful videostream that I see in VLC onto the disk for later encoding, I reckon the disks would be fast enough, or maybe something which would apply a light compression, enough that the disks can keep up, but not so much as to loose visible quality.I have tried FFMPEG as it seems capable of streaming a yuv4 stream down to the disk, but ofcause FFMPEG is unable to open the dshow device ( same error as this guy Ffmpeg streaming from capturing device Osprey 450e fails )
Please recommend a capable and (preferably) software which can do this.
-
Overlay video with alpha using FFmpeg on macOS Catalina... problems
16 octobre 2019, par joggaIn previous versions of macOS (10.14 Mojave and older) I used FFmpeg to overlay a video with alpha on top of another video with much success. Now when updated to macOS Catalina the same FFmpeg commands suddenly doesn’t work. It just produces black where the transparency should have been according to the alpha channel. The video I overlay on top is a ProRes 4444 file (which includes an alpha channel) and it no longer works as expected.
I have tried several versions of FFmpeg from the nightly builds to the latest stable one (version 4.2.1) to no avail. Nothing works :-(
The simplest form of the command I have been using looks like this :
ffmpeg -y -i skiing.mp4 -i subtitles.ap4h -filter_complex overlay subtitled.m4v
Doesn’t work. But if I replace the subtitles.ap4h file with a simple .png image with alpha, it works ?
I have also been experimenting with the blend filter, but I really don’t understand the gist of it yet.
Can someone please shed some light on this. Have anyone else out there seen this problem.
Do you have any suggestions on how to use the blend filter instead of the overlay filter to accomplish the same task ?
You can find the sample files I used in my dropbox...
https://www.dropbox.com/s/8z3grpsbejb1na0/skiing.mp4?dl=0
https://www.dropbox.com/s/8c79lg07rbuqyhn/subtitles.ap4h?dl=0Really looking forward to someone help me solve this mystery.
Best regards / Jörgen
-
Rtsp streaming, no live
14 août 2018, par Alejandroi follow this topic for streaming rtsp here
now this is my conf in the server :ffmpeg -v info -i rtsp://XXXXX.ddns.net/onvif1 -c:v copy -c:a copy -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/html/p433/assets/video/test.m3u8 -loglevel debug
The client :
<code class="echappe-js"><script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js"></script>
<script src="https://releases.flowplayer.org/7.2.6/flowplayer.min.js"></script>
<script><br />
flowplayer('#player', {<br />
live: true, // set if it's a live stream <br />
ratio: 9/16, // set the aspect ratio of the stream<br />
clip: {<br />
sources: [<br />
// path to the HLS m3u8<br />
{ type: "application/x-mpegurl", src: "&lt;?php echo asset_url();?>video/test.m3u8"},<br />
// path to an optional MP4 fallback<br />
{ type: "video/mp4", src: "//yourserver/path/index.mp4"}<br />
]<br />
}<br />
});<br />
</script>The problem ? dont show video in "Live", only show 20seconds aprox and the video is loop icon loading
what am I doing wrong ? I try it all night but I think that it reaches the point of not finding the right path
thanks for your time !