Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (53)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6157)

  • I want to save a video with effects applied on it. OnSucccess is not calling [duplicate]

    10 novembre 2016, par shriya

    This question already has an answer here :

    This is command string which i want to process.

    String[] command = new String[]"ffmpeg -y -i " + old_video_path + " -strict experimental -vf curves=vintage -s 240x320 -r 30 -aspect 4:3 -ab 48000 /storage/emulated/0/video.mp4" ;
    executeFFmpeg(command) ;

    private void executeFFmpeg(String[] cmd) {
       try {
           ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {

               @Override
               public void onStart() {
                   Log.e("Progress", "onStart");
               }

               @Override
               public void onProgress(String message) {
                   Log.e("Progress", "onProgress");
               }

               @Override
               public void onSuccess(String message) {
                   Log.e("Progress", "onSuccess");
               }

               @Override
               public void onFailure(String message) {
                   Log.e("Progress", "onFailure" + message);
               }

               @Override
               public void onFinish() {

                   Log.e("Progress", "onFinish");

               }
           });
       } catch (FFmpegCommandAlreadyRunningException e) {
           // Handle if FFmpeg is already running
       }
    }

    in Log i am getting onProcess call and onFininsh call. How do i write code to save this video in sdcard and where ?

  • opencv_ffmpeg module crash (IP Camera)

    25 novembre 2016, par Suraksha Ajith

    I’m using IP webcam android app(It converts mobile camera into IP web camera).
    I’m running below code in Visual Studio 2015 with OpenCV 3.1.

    VideoCapture cap; Mat img;
    cap.open("http://192.168.0.101:8080/video?x.mjpeg");
    while(waitKey(33)!=27)
    {
       try{
           cap>>img;  //code crashes here
           if(img.empty())
           {
            cout<<"camera Closed"<code>

    Getting below error.cIf the internet connection is slow or if the Wi-Fi is disconnected in my android device the program crashes
    Error :

    Exception thrown at 0x0BF2F6F0 (opencv_ffmpeg310.dll) in test.exe :
    0xC0000005 : Access violation reading location 0x00000020.

    If there is a handler for this exception, the program may be safely
    continued.

    even if the code is wrapped within try catch block, it crashes !

    Should I use try {} catch (...) block in source file, if yes, then where should I use this ?
    I referred this link but did not find the right answer.

  • Getting ffprobe or avprobe not found while using youtube_dl module

    26 décembre 2016, par Avinash
    import youtube_dl


    options = {
       'format':'bestaudio/best',
       'extractaudio':True,
       'audioformat': 'mp3',
       'outtmpl':'%(id)s.%(ext)s',
       'noplaylist':True,
       'nocheckcertificate':True,
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       }],

    }

    with youtube_dl.YoutubeDL(options) as ydl:
       ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])

    I am Getting

    "youtube_dl.utils.DownloadError : ERROR : ffprobe or avprobe not found.
    Please install one."

    I downloaded ffmpeg and tried giving its bin folder location in path variable . I also tried copying that bin folder to my youtube_dl package folder. None of them worked.

    Thanks in advance.