
Recherche avancée
Autres articles (36)
-
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
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.
Sur d’autres sites (7227)
-
Revision 52d273674b : Further rate control cleanups Includes various cleanups. Streamlines the interf
4 décembre 2013, par Deb MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Modify /vp9/encoder/vp9_ratectrl.c
Modify /vp9/encoder/vp9_ratectrl.h
Further rate control cleanupsIncludes various cleanups.
Streamlines the interfaces so that all rate control state
updates happen in the vp9_rc_postencode_update() function.
This will hopefully make it easier to support multiple
rate control schemes.
Removes some unnecessary code, which in rare cases can casue
a difference in the constrained quality mode output, but
other than that there is no bitstream change yet.Change-Id : I3198cc37249932feea1e3691c0b2650e7b0c22fc
-
Merge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’
28 novembre 2013, par Michael NiedermayerMerge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’
* commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’ :
h264_refs : make sure not to write over the bounds of the default ref listConflicts :
libavcodec/h264_refs.cThis condition should be impossible and was checked for by asserts.
the asserts are moved up in this merge to gurantee that no out of array
access can happen even if the state is "impossible".
Also if such impossible states could somehow be created, that should
be dealt with and not silently ignored.Merged-by : Michael Niedermayer <michaelni@gmx.at>
-
Bash Scripting FFMPEG how to wait the process to complete
9 décembre 2013, par user1738671I have a strange problem. I have a folder monitor with incrontab that launches an automatic transcoding script on
CLOSE_WRITE
state of a file I dropped in. The problem is that the script doesn't wait until the ffmpeg process finishes before continuing with the rest of the script commands. This means that the original file get deleted before the transcoding is finished, which is bad.First question :
What is the root cause of this behaviour ?Second question : In a bash script, what is the best way to make sure an ffmpeg process is done before get going with the rest of the script ?
Script :
#/bin/bash
#transcoding
/usr/bin/ffmpeg -i "sourcefile push with incron as $1" -vcodec somecode -acodec somecodec "destination file"
#delete source
rm "path/to/file$1"Should I encapsulate my FFMPEG in a while statement ?