
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (39)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 (7989)
-
Encoding failed during converting and saving video using php-ffmpeg in laravel
6 octobre 2020, par mohammadreza mardanii'm using https://github.com/PHP-FFMpeg/PHP-FFMpeg package to convert user video uploads to
mp4
format, note that I'm using Laravel framework for development process.

But I'm facing error for this and Im not really sure what im doing wrong because all it says is that Encoding is failed. I attached the errors image below you can see that at the bottom.


This is my function which handles user uploads :



public function upload()
 {
 $this->putVideoIntoStorage();
 $this->ffmpeg->saveVideo($this->storageManager->getAbsolutePathOf($this->video->getClientOriginalName()));

 return $this->saveVideoIntoDatabase();
 }





This is the function which handles saving and converting video to
mp4
usingphp-ffmpeg



public function saveVideo(String $path)
 {

 $ffmpeg = FFMpeg::create([
 'ffmpeg.binaries' => config('services.ffmpeg.ffmpeg_path'),
 'ffprobe.binaries' => config('services.ffmpeg.ffprobe_path'),
 'timeout' => 3600, // The timeout for the underlying process
 'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
 ]);


 $video = $ffmpeg->open($path);

 $video->save(new X264(), 'video.mp4');
 }





This is the error im getting : Errors Image

I can provide more details if you need just ask me, I would be really glad if someone can help me through this.

-
Problem with ffmpeg (saving mp4) AttributeError : 'NoneType' object has no attribute 'dpi' [closed]
29 avril 2023, par CompletenoobieHello when I try to save the following mp4 i get an error message. Code worked on another pc.


AttributeError : 'NoneType' object has no attribute 'dpi'


-
Retrieving and Saving media metadata using FFmpeg
22 mars 2024, par Rahul PatwaI want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.



Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.



Or, is there any other tool/utility/API that I can use for this ?