
Recherche avancée
Autres articles (41)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (3986)
-
Unable to load FFProbe when using LaravelFFMpeg
13 janvier 2021, par SupunSperai have a problem when i upload a video with a form in my server. In the moment of upload, the aplication, must to generate a thumbnail from the video. when i try to do it convert a video in the server, i receive this error :-Unable to load FFProbe




$path = Storage::putFile('public/uploads/videos', new File($data['video']));
 $video = explode("uploads/videos/", $path);
 $video_name = explode('.', $video[1]);
 $thumbnail_name = $video_name[0] . ".png";

 $thumbnail = 'public/videos/thumbnails/' . $thumbnail_name;
 $thumbnail_new = FFMpeg::fromDisk('local')
 ->open($path)
 ->getFrameFromSeconds(5)
 ->export()
 ->toDisk('local')
 ->save($thumbnail);









FFMPEG_BINARY_PATH="/usr/bin/ffmpeg"
FFPROBE_BINARY_PATH="/usr/bin/ffprobe"






anyone know how to solve this ?

-
"An attempt was made to load a program with an incorrect format"
31 janvier 2014, par user2922938I work in visual studio 2008, when run the program this error is shown :
$exception "Could not load file or assembly 'AForge.Video.FFMPEG,
Version=2.2.5.0, Culture=neutral, PublicKeyToken=03563089b1be05dd' or one of its dependencies. An attempt was made to load a program with an incorrect format."using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using AForge.Video.FFMPEG;
namespace WindowsFormsApplication9
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
VideoFileReader video = new VideoFileReader();
}
}
}What is wrong with my program ?
-
hwcontext_vulkan : dynamically load functions
29 avril 2021, par Lynne