Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (109)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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

Sur d’autres sites (7607)

  • 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}]
  • 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.

    


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