Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

Sur d’autres sites (5809)

  • How to randomize order in ffmpeg concat

    26 janvier 2020, par Spark Accounts

    I have everything made and everything working but I would like to see if It’s possible to randomize the order of the files played in concat.

  • Android Merging two or more videos from the List to a single synchronised video

    18 août 2017, par Alok Kumar Verma

    I’ve an activity which has the certain videos inside my recyclerview. I’ve one button which takes you to the next activity which has the VideoView.
    Now the main task is to merge the videos to single synchronous video and that video file will be played in the video View.

    The mapping is like -> EditVideoActivity.java (List of Videos in recyclerview) -> Processing the video merging into one -> saving somewhere -> the merged video getting played.

    I’ve researched on several sites about this and came to know that two things are available for this, these are :

    1. FFMPEG

    2. MP4Parser

    Now I’ve followed some questions on StackOverflow about this :

    1. FFMPEG Usage getting problem in Orientation : This doesn’t serve my motive. As this guy has used some coding.
    2. Mp4Parser : They have moved their site to Github but I got 504 gateway timeout so no guidance for that.

    Developer Android has MediaCodec and I went there it was quiet complex

    I’m sending out the data in string format or i must say the video path in array format to other activity and is working fine.

    I’ve done some homework what I did is just in media player I appended the videos. But I have to merge the videos and then it has to be played inside the videoplayer.

    1. When the button is clicked it merges the videos and saves it in a storage specified

    The same videos is now played in videoplayer

    EditVideo.java from where the data is passed from the press of the button

    audioButton.setOnClickListener(new View.OnClickListener() {
                     @Override
                     public void onClick(View view) {
                         //the position of the video
                         videoPosition = selectedVideo;

                         if(videoPosition != null){
                             Intent intent = new Intent(EditVideoActivity.this, AudioActivity.class);
                             intent.putExtra("videoData",videoPosition);
                             Log.e("VIDEO_SENT_DATA=======", videoPosition);
                             startActivity(intent);
                         }else
                             Toast.makeText(EditVideoActivity.this,"You have not selected any video",Toast.LENGTH_LONG)
                                     .show();
                     }
                 });

    from here the data is getting passed, I’m working on how to merge the videos with the press of the above button

    And PreviewActivity.java is the page where the videoView is there to be played (the merged files)

    I’ve done this : Appending the videos in onCreate()

    //getting the passed value from the previous activity
       Bundle extras = getIntent().getExtras();
       final ArrayList<string> videoReceived = extras.getStringArrayList("videos");
       Log.e("VIDEO_RECEIVED",videoReceived.toString());

       mVideoPlayer.setVideoPath(String.valueOf(videoReceived.get(0)));
       mMediaController = new MediaController(this);
       mMediaController.setMediaPlayer(mVideoPlayer);
       mVideoPlayer.setMediaController(mMediaController);
       mVideoPlayer.setBackgroundColor(Color.TRANSPARENT);
       mVideoPlayer.requestFocus();
       mVideoPlayer.start();
       Log.e("VIDEO_SIZE===",String.valueOf(videoReceived.size()));
       mVideoPlayer.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
           @Override
           public void onCompletion(MediaPlayer mediaPlayer) {

               if( currentIndex &lt; videoReceived.size()){
                   String uri = String.valueOf(videoReceived.get(currentIndex));
                   mVideoPlayer.setVideoPath(uri);
                   mVideoPlayer.start();
                   currentIndex++;
               }
           }
       });
    </string>
  • Multiple files in JW Player 6 not working

    18 octobre 2013, par Dvex

    Use version 6 JW Player. I'm transforming my videos using FFMPEG to MP4, FLV and WebM.

    When the videos are intended to be played, it does not and I have the following error :

    Error playing media:
    MediaError
    code: 4
    __proto__: MediaError
    MEDIA_ERR_ABORTED: 1
    MEDIA_ERR_DECODE: 3
    MEDIA_ERR_ENCRYPTED: 5
    MEDIA_ERR_NETWORK: 2
    MEDIA_ERR_SRC_NOT_SUPPORTED: 4
    constructor: function MediaError() { [native code] }
    __proto__: Object
    jwplayer.js?muokxc:4
    CAPTIONS([object Object]) jwplayer.js?muokxc:4
    CAPTIONS([object Object])

    In Firefox I have the error : "The file can not be decoded".
    This scenario only happens on my server. But on localhost, does not happen. The videos can be played normally.

    What is it that is happening ?

    My JS code to initialize the JW Player is :

    jwplayer(&#39;jwplayerjw-player&#39;).setup({
    "aspectratio":"16:9",
    "playlist":[{
    "image":"http://mydomain.com/system/files/videos/thumbnails/48/thumbnail-48_0002.png",
    "sources":[{
    "file":"http://mydomain.com/system/files/videos/converted/48/loop_2_flv_1381794678.flv"},
    {"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_mp4_1381794691.mp4"},
    {"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_webm_1381794705.webm"}]}],
    "width":"100%",
    "height":360,
    "stretching":"fill",
    "skin":"sites/all/libraries/jwplayer/skin.xml"
    });