
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (32)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 : (...)
Sur d’autres sites (5124)
-
Compress specific frames of a video using ffmpeg
10 février 2019, par araujoI’m trying to compress a range of frames from a video, is it possible to do it using ffmpeg ?, I mean, I want to compress from frame 100 to frame 300. I use this command to compress.
ffmpeg -i sintel_trailer-1080p.mp4 -c:v libx264 -b:v 3500k -r 24 -bf 2 -g 48 -sc_threshold 0 -c:a aac -strict experimental -b:a 96k -ar 32000 sintel_trailer-1080p_3500.mp4
-
Compress mp3 using ffmpeg in PHP
23 juin 2019, par MrinmoyMkI have already learnt that using ffmpeg we can compress mp3 files in php. I have also seen the line of code needed to implement ffmpeg,
exec("ffmpeg -i inputfile.mp3 -ab 64 outputfile.mp3")
But as I am new to php so I am unable to perform it correctly. Could anyone please give me a sample php file which compress mp3 files.
-
Running ffmpeg as a service ? [closed]
28 août 2021, par MangakuI'm looking to use ffmpeg to stream a loop video.


I've create this service :


Description=twitch
After=network.target remote-fs.target nss-lookup.target


[Service]
User=root
Restart=on-failure
RestartSec=30
ExecStart=/home/ffmpeg/launch-stream.sh
KillSignal=SIGTERM

[Install]
WantedBy=multi-user.target



Running this script :


#
# Copyright (C) Mangaku

ffmpeg -nostdin -re -stream_loop -1 -i kittens.mp4 -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k -f flv rtmp://blablabla



But i'm still facing (code=exited, status=1/FAILURE)


Any ideas ?