
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (48)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 ) (...)
Sur d’autres sites (10806)
-
Nginx RTMP module to generate HLS
28 novembre 2020, par Joe LinI'm streaming an audio stream with opus codec from Kurento
via ffmpeg to nginx-rtmp-module. I'm using the below command to stream to nginx-rtmp :


ffmpeg -protocol_whitelist file,udp,rtp -i test-audio.sdp 
-c:a libopus -f opus rtmp:///live/



I see no error on the ffmpeg side. But there's no m3u8 file being generated. But I noticed the following in the nginx log :


2020/11/23 23:19:31 [info] 95#0: *8 connect: app='live' args='' flashver='FMLE/3.0 (compatible; Lavf57.83' swf_url='' tc_url='rtmp://192.168.4.28:1935/live' page_url='' acodecs=0 vcodecs=0 object_encoding=0, client: 172.17.0.1, server: 0.0.0.0:1935



Noticed the
acodes=0
. Does this mean that it doesn't like opus codec ?

Below is my nginx.conf :


rtmp {
 server {
 listen 1935;
 chunk_size 4096;
 application hopefm {
 live on;
 interleave on;

 hls on;
 hls_path /mnt/hls;
 hls_fragment 3;
 hls_playlist_length 60;
 }
 }
}



Thanks for any help.


-
Why psnr values generated by ffmpeg is inf?
2 décembre 2020, par Lin LingfengI use ffmpeg to calcute PSNR value.

OS : Ubuntu-18.04

Commond :

ffmpeg -i ../dataset/1080p-1k_rename/ggg_30_.jpg -i ../dataset/decode_dir_1k/ggg_30_.jpg -lavfi psnr="stats_file=./jpg_name.log" -f null -



Result :


ffmpeg version 4.3.1-static https://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 8 (Debian 8.3.0-6)
...
...

Output #0, null, to 'pipe:':
 Metadata:
 encoder : Lavf58.45.100
 Stream #0:0: Video: wrapped_avframe, yuvj420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc (default)
 Metadata:
 encoder : Lavc58.91.100 wrapped_avframe
frame= 1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=1.74x 
video:1kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
[Parsed_psnr_0 @ 0x7461800] PSNR y:46.226028 u:inf v:inf average:47.986940 min:47.986940 max:47.986940



u:inf v:inf
Why U and V are inf ?


-
disable muxing in YOUTUBE-DL
3 février 2020, par user3515562I want to disbale post process in youtube-dl(2020.01.24).
My batch file containsset /p ytlink=Enter the link of Youtube Video:-
youtube-dl -x -o D:\%%(title)s.%%(ext)s %ytlink%
pauseThe youtube-dl first downloads webm file or any other file than use post process ffmpeg.exe to convert it.
I want to disable post process.Their must be no post process happening after youtube-dl download.
x is the option to only download audio file of the YouTube video in webm format .There is no post processing involved.But youtube-dl by default tries to convert the webm file to some other format, which is post processing.Post processing of audio file by default is one that i want to disable
OS=Windows 10