
Recherche avancée
Autres articles (39)
-
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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (6798)
-
PHP Sort Order Proccess Codeiginiter
20 avril 2015, par Alan El-nino Malmsteeni use php codeigniter to manage video using FFMPEG, but i dont know how to delete original video after convertion succesful.
if(!($_FILES["upload_video"]["type"] == "video/mp4"))
{
$prename = $r.'.'.$ext;
$video = $prename.'.mp4';
$directory_path = "/home/templates/videos/".$prename;
$directory_path_full = "/home/templates/videos/".$prename;
exec("ffmpeg -i ".$directory_path_full." ".$directory_path.".mp4");
// Delete original format video
$this->load->helper("file");
unlink($directory_path_full);
}else{
$video = $r.'.'.$ext;
}When i use "unlink" it work good to delete file, but the video is corrupt (maybe php directly delete it when converting progress)
So, can you help me to create sort order php process for this case ?Thanks
-
Revision 5b21708fd5 : Fix def pairs in 32x32 2D-DCT sse2 Properly pair the def/undef order. Change-I
20 août 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/x86/vp9_dct_sse2.c
Fix def pairs in 32x32 2D-DCT sse2Properly pair the def/undef order.
Change-Id : I9736a6f8d2efc075b1d72dafc75b9350d055cf65
-
How to copy of tbn value from one mpg to another mpg using ffmpeg ?
24 février 2016, par jegguCommand to change audio with out re-encoding using ffmpeg is :
ffmpeg -i *.mpg -codec:v video_format -codec:a copy *.mpg
It will copy audio from one to another.Similarly is that possible to copy tbn value from one mpg to another mpg using ffmpeg ?
Or how to change tbn value using ffmpeg ?