
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#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
Autres articles (48)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (6778)
-
getting exception Your FFProbe version is too old and does not support `-help` option [closed]
4 mai 2021, par Sameer ShaikhI installed ffmpeg by doing
sudo apt-get install ffmpeg



From a terminal, when I run
/usr/bin/ffprobe -help
it runs properly, but it is not running from my package. Instead I get the exception in the title :Your FFProbe version is too old and soes not support '-help'



I am using
laravel
and i have installed this package https://github.com/PHP-FFMpeg/PHP-FFMpeg


Where am i going wrong ?


-
On the server running Ubuntu 14.04 to make slideshow of images with different types of transitions ? [on hold]
16 mars 2017, par user3593350Good day !
You want to make a slideshow on the server from a set of images. I did it with ffmpeg, is it possible to make video from set of images, you can do fade in/out effect to fade in/out images. But what if you want to make several types of transitions. The Internet is full of sites that make slideshow with different transitions, some tool must be.
Nothing normal I did not find who can faced similar problems and can suggest what tools to use ?
While there is the idea to find the editor, where a terminal will be glued two pictures, like draw one picture over another in the scale of 50%, then 51%, etc. thereby creating frames for a transition, then using ffmpeg to combine them into a video and get video with the transition. -
Converting mp4 AAC to AVC using Python
12 janvier 2020, par zion.b.i am using
ffmpeg
to convert video format. I have a video inmp4 aac
and want to convert it tomp4 avc
. I successfully(!!!) usedffmpeg
to covert image toavi
/mkv
/even copy of themp4
but nothing gives me what i desire.The idea is to have a video file format that will run on mostly all mobile devices such as
mp4 avc
.My python code :
import subprocess #need to install ffmpegin terminal/cmd
def convert_video(video_input, video_output):
cmds = ['ffmpeg', '-i', video_input, video_output]
subprocess.Popen(cmds)
convert_video("videoName.mp4", "videoNameCopy.mp4")