
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (61)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (7892)
-
Access Android phone camera stream using ffmpeg
14 mars 2016, par Parth DoshiI am developing an application that performs live streaming. Currently, I am able to stream a local video from my SD card to my Wowza streaming server successfully.
This is the command that I fire from my FFMPEG based Android project
ffmpeg -re -i /sdcard/sample.mp4 -c copy -f flv rtmp://192.168.1.34:1936/live/myStream
Now, I want to send my camera stream to my streaming server.
I tried using the below command but it does not work since the /dev/video0 device is denied permission.ffmpeg -re -i /dev/video0 -c copy -f flv rtmp://192.168.1.34:1936/live/myStream
Can anyone tell me the right way to stream the camera feed using ffmpeg on Android
-
ffmpeg HLS live stream
12 décembre 2017, par Chris OrfitelliI’m trying to create a HLS stream on a windows 10 box running ffmpeg with a blackmagic capture card as the input. I’m pretty new at this and trying to fiddle my way threw is driving me bananas.
I’m having issues with my m3u8 file not working. I can play all my segmented .ts files just fine but the m3u8 file is a bit beyond me.
ffmpeg -f dshow -video_size 1280x720 -framerate 59.94 -rtbufsize 702000k -i video="Decklink Video Capture" -threads 0 -map 0 -codec:v h264_nvenc -flags +cgop -g 1 -hls_time 5 -hls_wrap 6 c:\inetpub\wwwroot\out.m3u8
its creating a m3u8 file that looks like this
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:2
#EXTINF:5.003333,out2.ts
#EXTINF:4.986656,out3.ts
#EXTINF:5.003333,out4.ts
#EXTINF:5.003333,out5.ts
#EXTINF:4.986656,out0.ts -
Sending BlackMagic DeckLink Studio 4K over RTMP streams with FFmpeg
17 novembre 2017, par im dumbI’m trying to send a stream of video that’s coming into a BlackMagic DeckLink Studio 4K capture card over a few different RTMP streams at once with FFmpeg. The command that I am doing it with is this :
ffmpeg -re -format_code Hi59 -f decklink -i 'DeckLink Studio 4K' -map 0 -flags +global_header -vcodec libx264 -crf 25 -preset medium -pix_fmt yuv422p -acodec aac -f tee "[f=flv]rtmp://ip1/live/test|[f=flv]rtmp://ip2/live/test
.However, whenever I send this video out, I just get color bars when looking at the stream. I tried using a different video source (the testsrc supplied by FFmpeg), and that sends out fine over RTMP to multiple stream destinations.
Is there something weird with how tee and the decklink stuff work in FFmpeg ? Or is there an issue with my command ?