
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (47)
-
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Personnaliser l’affichage de mon Médiaspip
27 mai 2013Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
Comment supprimer le nombre de vues d’affichage d’un média ?
Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
Administrer > Gestion du squelette > (...)
Sur d’autres sites (5370)
-
linux ffmpeg Live streaming cannot connect to another PC
9 juin 2019, par Tae-YeongI’m set ffserver and ffmpeg streaming code in the linux console terminal.
ffserver => ffserver -f ./ffserver.conf (terminal 1)
ffmpeg => ffmpeg -r 15 -s 640x480 -f video4linux2 -i /dev/video0 http://mylocalhostip:8090/feed1.ffm (terminal 2)
It was working success in the localhost.
But It could not connect other PC or Mobile.
Firewall set disable.My desktop and mobile have a normal Internet connection.
I want to Live-Streaming connect other PC or Mobile.
How can I do ?Hardware = LattePanda
OS = Ubuntu 16.04< ffserver.conf >
HTTPPort 8090
bind to all IPs aliased or not
HTTPBindAddress 0.0.0.0
max number of simultaneous clients
MaxClients 1000
max bandwidth per-client (kb/s)
MaxBandwidth 10000
Suppress that if you want to launch ffserver as a daemon.
NoDaemon
<feed>
File /tmp/feed1.ffm
FileMaxSize 100M
</feed>
<stream>
Feed feed1.ffm
Format swf
VideoCodec flv
VideoFrameRate 15
VideoBufferSize 80000
VideoBitRate 100
VideoQMin 1
VideoQMax 5
VideoSize 640x480
PreRoll 0
Noaudio
</stream>
<stream>
Format status
ACL allow localhost
ACL allow 121.172.0.0 121.172.0.255 (my desktop Ip range)
</stream>I expect to output of My WebCam Screen, but the actual output timeout.
My desktop OS is Window10. And Mobile OS is Android.
-
ffmpeg for android guardian project build failing
20 octobre 2015, par WikkiI am a noob and i am trying to compile a static build of ffmpeg for android using "guardian project" repo. (https://github.com/guardianproject/android-ffmpeg)
I have followed the steps mentioned in there, but it fail all the time. I am using Ubuntu 11.10 64 bit using vmware. Android NDk r8e 32 bit.
Here is the complete log of android-ffmpeg compilation. http://bit.ly/1mgZqeV
Also have a look at the terminal command window showing the errors......
It seems that make files are not done.
Please help me if some one has more clear understanding.
-
Unable to FW/RW video after remuxing multiple mpeg-ts to mp4
21 juillet 2022, par JonaI have written custom code to concat multiple mpeg-ts files into an mp4 video file. I've used as reference the remuxing code sample.


I'm having issues with the final output. I'm unable to fast-forward or rewind as the video looses it's information and plays the same frame till the end. But if i play from the beginning it plays fine.


I compared using ffprobe my custom code remuxer results to that of using the following terminal command :


ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.mp4



To my surprise, the videos look almost identical but I'm noticing some differences in the reported distance and keyframe values. I also did a hex comparison and see minor differences at the end of the file which tells me I've muxed the frames correctly. What could I be missing ? Any tips or ideas would be really helpful !


FFmpeg terminal remuxed video [WORKING VIDEO]



Custom remuxer code video [SCRUBBING BROKEN]



App.mp4 vs ffmpeg.mp4 remuxed video