Recherche avancée

Médias (91)

Autres articles (12)

  • Contribute to documentation

    13 avril 2011

    Documentation 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 (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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 (2903)

  • Revision 4b3e59ef0e : Merge "define a specific neighborhood for SB64 mv search" into experimental

    29 mars 2013, par Yaowu Xu

    Changed Paths : Modify /vp9/common/vp9_mvref_common.c Merge "define a specific neighborhood for SB64 mv search" into experimental

  • Revision e3955007df : Merge "Framework changes in nzc to allow more flexibility" into experimental

    29 mars 2013, par Deb Mukherjee

    Changed Paths : Modify /vp9/common/vp9_entropy.c Modify /vp9/decoder/vp9_decodframe.c Modify /vp9/decoder/vp9_detokenize.c Modify /vp9/encoder/vp9_bitstream.c Modify /vp9/encoder/vp9_encodeframe.c Modify /vp9/encoder/vp9_rdopt.c Modify /vp9/encoder/vp9_tokenize.c Merge (...)

  • Escape character "|" error (Linux command)

    22 mars 2013, par user1812668

    I'm trying to run a Linux command in Java.

    This is the command :

    "ffmpeg -i rtmp ://192.168.1.112/garage/stream26g -f mpegts -acodec libmp3lame -ar 48000 -ab 64000 -s 480x320 -r 30 -vcodec libx264 -b 544k -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -subq 5 -trellis 2 -refs 0 -coder 0 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 200k -maxrate 544k -bufsize 544k -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 30 -qdiff 4 -level 30 -aspect 480:320 -g 30 -async 2 - | vod - 10 stream/stream26g/sample stream/stream26g/stream.m3u8 http://www.tshizerbia.com//video/ 5" ;

    But it gives me an error :

    Unable to find a suitable output format for |

    And I don't know what is the problem

    I used this to run the command

    Process p = Runtime.getRuntime().exec(command);

    If I put \\| in the string the message error is :

    Unable to find a suitable output format for |

    How can I escape this character ? Any ideas ?