
Recherche avancée
Médias (21)
-
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
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (50)
-
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (7954)
-
Solution to convert FLV to MP4 from streaming server [on hold]
10 avril 2015, par user3799647I am looking for solution to convert FLV video file from streaming server like Vidzer, to HTML5 friendly format like mp4. I have small website with movies and I want to watch movies on my phone which support MP4.
Is there any way to do that ? I have dedicated server, I don’t want to save files on server and convert, but convert on the fly using cURL, PHP and ffmpeg.
-
ffmpeg exec hangs in windows even after redirection
4 juin 2020, par Yashwanth Dornalaiam using ffmpeg for php ..even after redirecting stdout the script still hangs.help.



<?php

exec("youtube-dl -g https://www.youtube.com/watch?v=3Ywz4qvMfpQ 2>&1",$a);
echo $a[1];

exec(" ffmpeg -y -ss 1:30 -i \"$a[0]\" -ss 42:30 -i \"$a[1]\" -map 0:v -map 1:a -ss 10 -t 0:20 -c:v libx264 -c:a aac gog-vs-triv.mp4 > NUL 2>&1 "); 


?>




ps :The above code runs good on cmd.


-
Error using ffmpeg in video downloader : 'ERR : spawn ./db/ffmpeg ENOENT'
25 septembre 2021, par GingerCoffeeI've been trying to get Floatplane Downloader to work on my NAS and I've managed to get most of the way. I've set up an Ubuntu Server VM in TrueNAS and got it working in a Docker container. Everything is downloading fine to the right folder on the NAS but once the download finishes I get this error :
ERR: spawn ./db/ffmpeg ENOENT


It then tries a couple more times but nothing. I made sure I had ffmpeg installe though I don't know if the reason it can't use it is because it's installed on the host and not in the Docker container directly ? Though I've not been able to work out how to do that or even if it's possible.


I tried just copying ffmpeg from
/usr/bin
to/var/lib/docker/volumes/db/_data
where it seems like it wants it to be and then I get this instead :ERR: Command failed: ./db/ffmpeg -i ./videos/Media/LTT/TechLinked/TechLinked - S2021E0925021600 - STEAM Games on Xbox.partial
and then lists all the metadata for the video so I'm not sure that was right.

Whenever I start the downloader, the first thing it says is
Ffmpeg binary missing! Downloading...'
and thenDone
a few seconds later. So it seems to be detecting that it doesn't have ffmpeg and then downloads it but that doesn't seem to work.

Any ideas ?