
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 (106)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 (...)
Sur d’autres sites (14557)
-
Broken pipe when trying to pipe ffmpeg png output to another program
7 mars 2019, par nicky nickHere’s my what I’m trying to do :
ffmpeg -i video.mp4 -vcodec:png -f image2pipe - | waifu2x-caffe-cui -c 128 -d 8 -p cudnn --model_dir "C:\waifu2x-caffe\models\cunet" -s 2 -n 3 -m noise_scale -e .png -l bmp -o %03d.png -i -
I get :
av_interleaved_write_frame(): Broken pipe
Error writing trailer of pipe:: Broken pipeHow to make this work ? and if possible I want to pipe it again to ffmpeg to create video.
Edit : I’m trying to extract all the frame from the video and process them with other programs, so piping the output can save me a lot of time because I don’t have to monitor my computer so often.
-
Streaming WebM with ffmpeg over UDP doesn't work with audio
28 avril 2014, par omgodieI’m trying to stream a webcam video and audio as WebM via udp over the ffmpeg command line tool. (ffmpeg is build correctly and all libraries are included)
The stream is initiated with :
ffmpeg -f dshow -i video="Logitech HD Pro Webcam C910":audio="Mikrofon (USB-Audogerät)" -f webm udp://localhost:11100
and i try to playback the file on the same computer with :
ffplay udp://localhost:11100
Streaming Video AND audio doesn’t work. I get the following error message in ffplay :
udp://localhost:11100: End of file 0KB vq= 0KB sq= 0B f=0/0
nan : 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0If i just stream the video
ffmpeg -f dshow -i video="Logitech HD Pro Webcam C910" -f webm udp://localhost:11100
I receive the video with ffplay.
What do i have to do to stream/receive audio correctly ?
I’m trying this way with the command line to reproduce a way with using libav in a C project if this is of interest...
-
How to install ffmpeg using xampp
28 avril 2014, par Paul LedgerI am trying to install ffmpeg onto my localhost server. I have followed countless blogs and tutorials online form other people who are stuck with this same problem. I follow everything to the letter.
- Unzip the file
- Copy php_ffmpeg.exe to ext folder in php
- copy the rest to system 32
As it says however when I do this I get this error when I start apache.
Fair play but it is in the folder
I also get this error as well :
And Again, here it is :
I have added the extention to my php.ini file
extension=php_ffmpeg.dll
The first time I go this to work I placed the ffmpeg.exe file onto my local host server and ran commands like this :
$cmd = "$ffmpegpath -i $input -an -ss $sec -s $size $output";
shell_exec($cmd);This works fine on my computer but not on an actual server. Could somebody offer some advice or guidene on where I have one wrong installing the extension or why running the .exe file on a lunix server with shell_exec doesn’t work