
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (77)
-
Le profil des utilisateurs
12 avril 2011, parChaque 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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (9779)
-
Museum of Multimedia Software, Part 4
20 août 2010, par Multimedia Mike — Software MuseumThis is the last part of the series, at least until some more multimedia software shows up at my favorite thrift shop or the other boneyards I scavenge.
Miscellaneous Multimedia Programs
This set includes the titles Matinee FMV Screensaver, MetaCreations Painter Classic, and Multimedia JumpStart. The second one is likely a creation program. I have no idea what the third one is, while the first title gives me chills just thinking about the implications.
Miscellaneous Creativity Software
Magic Theatre and Microsoft Home : Creative Writer. I think I loaded up the former once to find a very basic animation program. The latter isn’t necessarily multimedia-related but certainly classifies as creative software. It also reminds me of the ad I once spied in Entertainment Weekly magazine during the mid-1990s for a Microsoft music history CD-ROM. MS branched out into all kinds of niches.
More Multimedia Creativity Software
VideoCraft and U-Create Games & Animation. I wager these would be fun to play around with if I had the time.
Showcase CD-ROMs
"What Can You Make ? Showcase 7" from Macromedia and Microsoft Multimedia Pack 10.
Basic Multimedia Software Discs
As a multimedia nerd, these Apple QuickTime and Microsoft Video for Windows discs make me sentimental.
Real Software Collection
Grit your teeth and gaze upon CD-ROM distributions of Real’s software. There is a RealAudio disc back from when Real still called themselves Progressive Networks. "Everything you need to hear the web roar !"
Clips
And a few multimedia clip CD-ROMs, along with a disc that promises to test and tune your MPC setup.
Wrap-Up
I would be remiss if I neglected to mention a few more pieces of multimedia creation software in my collection. First, there’s the Barbie Storymaker. I actually gave that one a go, as you can tragically see from that link. Further, the Taco Bell fast food restaurant chain ran, as one of their many kids meal promotions, a series of 4 simple Comics Constructor CD-ROMs. I played briefly with it here and again during an exploration of XML data formats and the parsing thereof (which the software uses). -
I dont know how to Create a frame from a video with FFMpeg
17 octobre 2017, par Rohallah Hatamiby this code i am creating new object of news width video file and save that file into public/files
public function store(Request $request, $type)
{
$library_data = [
'library_title' => request()->input('title'),
'library_short_text' => request('short_text'),
'library_body' => request('body'),
'library_type' => $type,
'library_cat_id' =>request()->input('category'),
];
$new_library_object = Library::create($library_data);
if (count($request->file('fileItem')) > 0 && is_array($request->file('fileItem')) ){
foreach ($request->file('fileItem') as $file){
$file_data=[
'file_type'=> $file->getMimeType(),
'file_size'=> $file->getClientSize(),
];
$new_file_name = str_random(45).'.'.$file->getClientOriginalExtension();
$result = $file->move(public_path('files'),$new_file_name);
if($result instanceof \Symfony\Component\HttpFoundation\File\File){
$file_data['file_name'] = $new_file_name;
$file_data['file_title'] = $new_file_name;
$new_file_object=$new_library_object->files()->create($file_data);
}
}
}elseif (count($request->file('fileItem')) > 0 && !is_array($request->file('fileItem'))){
$file_data=[
'file_type'=> $request->file('fileItem')->getMimeType(),
'file_size'=> $request->file('fileItem')->getClientSize(),
];
$new_file_name = str_random(45).'.'.$request->file('fileItem')->getClientOriginalExtension();
$result = $request->file('fileItem')->move(public_path('files'),$new_file_name);
if($result instanceof \Symfony\Component\HttpFoundation\File\File){
$file_data['file_name'] = $new_file_name;
$file_data['file_title'] = $new_file_name;
$new_file_object=$new_library_object->files()->create($file_data);
}
}then I dont know how use this codes to Create a frame from a video
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->getFrameFromSeconds(10)
->export()
->toDisk('thumnails')
->save('FrameAt10sec.png');whate is ’videos’ in fromdisk and in my codes how use this parametrs
I use this code `
$new_file_object=$new_library_object->files()->create($file_data);
$start = \FFMpeg\Coordinate\TimeCode::fromSeconds(5);
$clipFilter = new \FFMpeg\Filters\Video\ClipFilter($start);
FFMpeg::fromDisk('files')
->open($new_file_object->file_name)
->addFilter($clipFilter)
->export()
->toDisk('files')
->inFormat(new \FFMpeg\Format\Video\X264)
->save('short_steve.mkv');but I have this erroe
Non-static method Pbmedia\LaravelFFMpeg\FFMpeg::fromDisk() should not be called statically
-
Meta Receives a Record GDPR Fine from The Irish Data Protection Commission
29 mai 2023, par Erin — GDPR