
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (26)
-
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 (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (5331)
-
How to use ffmpeg for youtube stream ads for 2017 [on hold]
24 août 2017, par Trần Quang HọaCan anybody share me the code using the url of a video above any wed as input for ffmpeg so the stream output is not.
-
How to marge Youtube video with MP4 using FFMPEG library in Android ?
27 février 2018, par Apurv ModiHere is my code
private void executeAudioVideo() {
File moviesDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES);
String filePrefix = "audio_video";
String fileExtn = ".mp4";
youtubeURL = "https://www.youtube.com/embed/oEKyXKL25FU";
videoPath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/video.mp4";
File dest = new File(moviesDir, filePrefix + fileExtn);
int fileNo = 0;
while (dest.exists()) {
fileNo++;
dest = new File(moviesDir, filePrefix + fileNo + fileExtn);
}
filePath = dest.getAbsolutePath();
String[] command = new String[]{"-y", "-i", videoPath, "-i", youtubeURL, "-filter_complex", "[0:a][1:a]amerge=inputs=2[a]", "-map", "0:v", "-map", "[a]", "-c:v", "copy", "-c:a", "libvorbis", "-ac", "2", "-shortest", filePath};
Toast.makeText(this, filePath, Toast.LENGTH_SHORT).show();
execFFmpegBinary(command);
} -
how to stream an IP webcam (h264) to youtube live rtmp using avconv or ffmpeg ?
20 juin 2015, par BabaI have an IP webcam HiSilicon Hi3516C that I can successfully access from a raspberry pi. I can get still images by using a command like this :
avconv -i "rtsp://192.168.1.10:554" myfile.jpg
now instead of still images I would like to stream the video to youtube live. I have configured an event in my youtube live account and gotten a stream name and a rtmp url.
My youtube ingestion settings are :
custom ingestion : bitrate 400kbps - 1000 kbps (360p)
encoder : Other encodermy webcam specs says :
Webcam : HiSilicon Hi3516C
Video EncodingH.264 baseline profile
H.264 main profile Level 4.0
MJPEG/JPEG baseline
Video Encoding PerformanceAt most 2-megapixel resolution for H.264 encoding
Real-time H.264&JPEG encoding of multiple types of
streams : 1080p@30 fps+VGA@30 fps + JPEG snapshot
1080p@1 fpsSupports constant bit rate (CBR) mode and variable bit
rate (VBR) mode.Supports the output bit rate ranging from 32 Kbit/s to 40
Mbit/s.Encoding frame rate, ranging from 1/16 frame/s to 30
frame/sEight ROIs
OSD overlay of eight regions before encoding
I am not sure what command line to issue in order to properly encode and send my stream to my you tube event. So far I have tried :
avconv -i rtsp://192.168.1.10:554 -r 20 -b 750 -f flv rtmp://a.rtmp.youtube.com/live2
(note that I haven’t used the stream name provided by youtube since I do not know where to specify it) this returns the following :
[h264 @ 0x1fb0380] RTP : missed 273 packets
[h264 @ 0x1fb0380] RTP : missed 191 packets
[h264 @ 0x1fb0380] RTP : missed 225 packets
[h264 @ 0x1fb0380] RTP : missed 332 packets
[h264 @ 0x1fb0380] RTP : missed 349 packets
[h264 @ 0x1fb0380] RTP : missed 339 packets
[rtsp @ 0x1fac640] max_analyze_duration reached
[rtsp @ 0x1fac640] Estimating duration from bitrate, this may be inaccurate
Guessed Channel Layout for Input Stream #0.1 : mono
Input #0, rtsp, from ’rtsp ://192.168.1.10:554’ :
Metadata :
title :
comment : minisdp
Duration : N/A, start : 0.040000, bitrate : N/A
Stream #0.0 : Video : h264 (Main), yuv420p, 1920x1080, 2.23 fps, 90k tbn
Stream #0.1 : Audio : [0][0][0][0] / 0x0000, 8000 Hz, mono
RTMP_ReadPacket, failed to read RTMP packet header
rtmp ://a.rtmp.youtube.com/live2 : Unknown error occurredI have also tried
avconv -f h264 -i rtsp://192.168.1.10:554 -r 20 -b 750 -f flv rtmp://a.rtmp.youtube.com/live2
which gives : rtsp ://192.168.1.10:554 : Protocol not found
and
avconv -rtsp_transport tcp -i rtsp://192.168.1.10:554 -r 20 -b 750 -f flv rtmp://a.rtmp.youtube.com/live2p
which gives :
[rtsp @ 0xf8680] max_analyze_duration reached
[rtsp @ 0xf8680] Estimating duration from bitrate, this may be inaccurate
Guessed Channel Layout for Input Stream #0.1 : mono
Input #0, rtsp, from ’rtsp ://192.168.1.10:554’ :
Metadata :
title :
comment : minisdp
Duration : N/A, start : 0.040000, bitrate : N/A
Stream #0.0 : Video : h264 (Main), yuv420p, 1920x1080, 25 fps, 1k tbr, 90k tbn
Stream #0.1 : Audio : [0][0][0][0] / 0x0000, 8000 Hz, mono
RTMP_ReadPacket, failed to read RTMP packet header
rtmp ://a.rtmp.youtube.com/live2p : Unknown error occurredAny hint, suggestions ?
I know very little about, video formats, codecs and streaming in general so any help is welcome. I would not mind using ffmpeg instead if anyone knows what command to issue.