
Recherche avancée
Autres articles (60)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (4643)
-
Using ffmpeg with MAMP local server
22 mai 2012, par dirk_22In my MAMP local server home folder on Mac OS X (htdocs), I have a bunch of images (labeled image0 through image(n)) which I would like to stitch together into a jpeg using ffmpeg. When I type the following command into terminal, a .mpg file is successfully generated.
ffmpeg -f image2 -i image%d.jpg videofile.mpg
However, when I try to execute the same command using the php code pasted below, nothing seems to happen.
<?php
shell_exec('ffmpeg -f image2 -i image%d.jpg videofile.mpg');
?>I've copied the installed ffmpeg folder on my home directory into htdocs, but ffmpeg doesn't seem to be accessed. I'm very new to PHP, so please feel free to point out any gross errors in my code. I'd just like the php script to accomplish the same task which terminal executes upon input of the aforementioned command. I'd welcome any and all advice. Cheers.
-
s is not recognized as an internal or external command in ffmpeg when streaming to Vk.com
4 décembre 2018, par Anirudha GuptaI am trying to streaming using ffmpeg windows binary. It’s work on youtube and other site but not on vk.com
ffmpeg -re -i file:"C:\Users\{uername}\Desktop\test.mp4" -acodec libmp3lame -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -bufsize 6000k -framerate 24 -vb 64k -maxrate 1500k -deinterlace -vcodec libx264 -preset veryfast -g 30 -r 30 -crf 23 -c:a copy -f flv rtmp://stream2.vkuserlive.com:443/live?srv=629725&s=aWQ9QnE3dk44Uk5jdGcmc2lnbj1lR3pCWmdSdTdxTVpCTDdkMUVGR0lRPT0=/Bq7vN8RNctg
It’s keep saying
Conversion failed!
's' is not recognized as an internal or external command,
operable program or batch file.This happen on new version. If I test it on old version, it’s telling me that handshake failed with server. Anyone have idea on what is it, I am not removing my key and url so you can test. All you need is mp4 file in your pc and you can run this thing in your PC.
-
ffmpeg didn't execute commands correctly - android
18 mars 2016, par BOBI’m using ffmpeg to draw text on video, i following the instruction in http://hiteshsondhi88.github.io/ffmpeg-android-java/
and i’m successfully install ffmpeg library in my application, but when i’m run any command it’s Start the process and appear this lines in android monitor
Metadata :
creation_time : 2016-03-03 14:29:38
handler_name : Stereo
Then nothing happen
and create the output video with 00:00 byte and 00:00:00 time
can any one help me to avoid this error
I think it’s losing metadata while encoding
My Command that i use is
ffmpeg -i "+inputvid+" -vf enable-libfreetype \"drawtext=enable='between(t,12,3*60)':fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:text='TestText'\" -acodec copy "+outvid+""
Thanks