Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (57)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

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

Sur d’autres sites (3108)

  • Black/Empty frames at beginning of video file when file Cut using FFmpeg [closed]

    28 octobre 2024, par d0tb0t

    I am cutting a video using ffmpeg and facing the Black/Empty frame at the start issue.

    


    When Codec Copy -

    


    -y -hide_banner -ss 0:1:0 -i file:///private/var/mobile/Containers/Data/PluginKitPlugin/94588A94-C451-426E-9E9C-A7555B6E7C25/tmp/trim.EC876F92-04BE-41F8-ADF3-8CFC84669908.MOV -to 0:1:33 -t 0:0:33 -vcodec copy -acodec copy -avoid_negative_ts make_zero -async 1 file:///var/mobile/Containers/Data/Application/728D5FED-5E6B-4A37-8DE4-E63E47B06DF9/Documents/FILES/FileCopy.mov


    


    When Re-Encoding -

    


    -y -hide_banner -ss 0:1:0 -i file:///private/var/mobile/Containers/Data/PluginKitPlugin/94588A94-C451-426E-9E9C-A7555B6E7C25/tmp/trim.9F2B209B-B657-471A-AE87-7C464FF10812.MOV -to 0:1:33 -t 0:0:33 -vcodec libx264 -vf scale=1280:720 -pix_fmt yuv420p10le -color_range tv -colorspace bt2020nc -color_primaries bt2020 -color_trc arib-std-b67 -crf 28 -preset ultrafast -acodec copy -avoid_negative_ts make_zero -async 1 file:///var/mobile/Containers/Data/Application/728D5FED-5E6B-4A37-8DE4-E63E47B06DF9/Documents/FILES/FileReEncode.mov


    


    Both of the command provides almost the same issue. Provided a sample gif file below to show the scenario.

    


  • how to Add mp3 file in to video file using ffmpeg

    20 mai 2020, par Rahane Akoliya

    i want to Add mp3 file in to video file using ffmpeg,i refer many link but not find answer.anyone can help me ?

    



                    final String[] command= ("-i "+ Constant.getTempVideo(VideoEditorActivity.this, false) +" -i " +Constant.Song_Path+ " -c copy -map 0:0 -map 0:1 -map 1:0 -shortest " + videoOutputPath).split(" ");


    



    i try this command but give error.

    


  • cant upload a .webm file after recording

    14 octobre 2017, par Syed Abdur Rehman Kazmi

    I kinda seem to stuck on something. I am missing something i dont know. I have uploaded a lot of files but somehow when i recorded this file via my laptop camera browser and try to upload it.. it doesnt.. I am also using ffmpeg to convert it.

    Laravel 5.4
    vuejs
    ffmpeg

    These are the tools involved the error i am getting is the file doesnt exist in local temp folder. ( i have checked it IS NOT there i dont understand why )

    This is the code i am using :

           $input = $request->only('video' , 'url' , 'blob');
       $input['file'] =$request->file('blob');

       $ffmpeg = FFMpeg::create([
           'ffmpeg.binaries'  => 'C:/FFmpeg/bin/ffmpeg.exe',
           'ffprobe.binaries' => 'C:/FFmpeg/bin/ffprobe.exe'
       ]);
       $video = $ffmpeg->open($input['file']);
       $video
           ->filters()
           ->resize(new Dimension(320, 240))
           ->synchronize();
       $video
           ->frame(TimeCode::fromSeconds(10))
           ->save('frame.jpg');
       $video
           ->save(new Video\X264(), 'export-x264.mp4')
           ->save(new Video\WMV(), 'export-wmv.wmv')
           ->save(new Video\WebM(), 'export-webm.webm');

    This is the error :

    Unable to probe C :\Users\KAZMI\AppData\Local\Temp\php4155.tmp

    ffprobe failed to execute command "C :/FFmpeg/bin/ffprobe.exe" C :\Users\KAZMI\AppData\Local\Temp\php4155.tmp -show_streams -print_format json

    and this is the input data :

    array:4 [  "video" => "video_7192228.webm"  "url" => "blob:http://localhost:8080/c319e0bf-7217-4916-90b6-c9cba800b7da"  "blob" => UploadedFile {#421    -test: false    -originalName: "blob"    -mimeType: "video/webm"    -size: 0    -error: 0    #hashName: null    path: "C:\Users\KAZMI\AppData\Local\Temp"    filename: "php8B7D.tmp"    basename: "php8B7D.tmp"    pathname: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp"    extension: "tmp"    realPath: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp"    aTime: 2017-10-14 14:20:24    mTime: 2017-10-14 14:20:24    cTime: 2017-10-14 14:20:24    inode: 0    size: 0    perms: 0100666    owner: 0    group: 0    type: "file"    writable: true    readable: true    executable: false    file: true    dir: false    link: false    linkTarget: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp"  }  "file" => UploadedFile {#421}]