
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (60)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5657)
-
avfilter/framesync : fix forward EOF pts
4 octobre 2024, par Nicolas Gaullieravfilter/framesync : fix forward EOF pts
Note1 : when the EOF pts is not accurate enough, the last frame
can be dropped by vf_fps with default rounding.Note2 : vf_scale use framesync since e82a3997cdd6c0894869b33ba42430ac3,
so this is a very commonplace scenario.For example :
./ffprobe -f lavfi testsrc=d=1,scale,fps -of flat \
-count_frames -show_entries stream=nb_read_framesBefore :
streams.stream.0.nb_read_frames="24"After :
streams.stream.0.nb_read_frames="25"Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
How to auto start subtitles in video using ffmpeg ? [duplicate]
26 février 2020, par SanchitI know how to add subtitles to video using :
ffmpeg -i infile.mp4 -i infile.srt -c copy -c:s mov_text outfile.mp4
But it doesn’t autostart with the video, I have to right click and select the subtitles and I would also like to know the command to add subtitles language because when I add and select subtitles, it shows as track 1 or track 2 etc but I would like it shows which language the subtitle is like English, Hindi, Malayalam etc.
-
How to generate a gif image from a video with laravel-ffmpeg ?
27 août 2021, par Jeannot21I am working on a project with laravel 7 and ffmpeg my problem is that I would like to generate a gif image from a video uploader but its not working.


I created a job named ConvertImageGifFromVideo here is its code :


class ConvertImageGifFromVideo implements ShouldQueue
{
 use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

/**
 * Create a new job instance.
 *
 * @return void
 */
public $video;
public function __construct(Video $video)
{
 $this->video = $video;
}

/**
 * Execute the job.
 *
 * @return void
 */
public function handle()
{

 $destination = '/'.$this->video->uid . '/'.$this->video->uid. '.gif';
 $result = Storage::disk('video-temp/'.$this->video->path);
 $ffmpeg = FFMpeg::create();
 $video = $ffmpeg->open($result);
 $video->gif(TimeCode::fromSeconds(2), new Dimension(640, 480), 3)->save($destination);

 $this->video->update([
 "image_gif" => $this->video->uid. '.gif',
 ]);
 
 }



}


and here is the error message [2021-08-27 12:47:33] [87] Failed : App \ Jobs \ ConvertImageGifFromVideo
And I would like to know if anyone has already encountered this kind of problem or if there is another way to write this code ?