
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (86)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (12711)
-
Disk [videos] does not have a configured driver
25 septembre 2024, par oshakabI am trying to create a thumbnail using laravel and ffmpeg. But am getting this error.



Disk [videos] does not have a configured driver.



My code



public function index()
{
 FFMpeg::fromDisk('videos')
 ->open('steve_howe.mp4')
 ->getFrameFromSeconds(10)
 ->export()
 ->toDisk('thumnails')
 ->save('FrameAt10sec.png');
 // $videos = Videos::where('user_email', Auth::user()->email)->get();
 // return view('instructor.videos')->with('videost', $videos);
}




What could be the solution. Thanks


-
Revision 28924 : on bouge
31 mai 2009, par ben.spip@… — Logon bouge
-
How to record an IPTV channel to disk, splitted by time. And extract audio [on hold]
13 septembre 2019, par Ahmad QudanI need to save a recording of an IPTV channel into multiple video files. each video file should only be 1 minute in length. so, every minute, a video is created.
Also, is it possible that an audio file is created the same way, with the same command ?
For example, a two minutes broadcast of a certain channel, will end up on my disk as 4 files, 2 videos ; one for each minute, and two audios ; one for each minuteI tried to use ffmpeg on linux, and it seems to be the tool for the job, but I couldn’t find out the right options that could make it happen