
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (111)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (5528)
-
Handling camera to stream videos live in browser ?
27 décembre 2016, par A SahraI am working to stream videos live in my browser using PHP codeigniter what are the best suggestion to handle and pass the video to ffmpeg and ffserver as input ,is there a good javascript plugin beside using HTML5 as streamer.
-
Android Live Streaming based on javaCV + FFMpeg crashes by adding red5 link
1er octobre 2015, par user1914692The Android application code is from :
Android Live Streaming courtesy of JavaCV and FFMPEGIt streams the live camera video from the device.
I follow one comment’s instruction (Yoshio Numai), to use Red5 as the stream server.
By Red5 itself, I can successfully use simpleBroadcaster and simpleSubscriber to stream and display the live camera (from the computer) steam.In the MainActivity.java, I change the code as below :
private String ffmpeg_link = "rtmp://192.168.1.105/oflaDemo/red5StreamDemo";
And I can start the app in my Android device (Nexus 4).
after click "start", the app crash, pops out a small window, saying :
"Unfortunately, JavaCV 0.3 Stream Test has stopped. OK."Once I click the OK button, I find the app is still live in the task list.
But the same thing will happen.
What’s wrong here ? -
ffmpeg command for php not working on live server
17 septembre 2022, par AnonymousI am generating thumbnail from video while uploading and I have installed ffmpeg on local but in live server ffmpeg is not installed and hosting provider asking extra charges to install it, so i have kept ffmpeg directory which i copied from local machine and placed to live server and provided live server path and try to call script but it is not generating thumbnail



$ffmpeg = 'https://example.com/ffmpeg/bin/ffmpeg.exe';
 $video_temp_path = $_FILES['upload_file']['tmp_name']; 
 $video_title = $_FILES['upload_video']['name'];


 $image = 'upload/' . $video_title . uniqid().'.jpg';
//time to take screenshot at
 $interval = 5;
//screenshot size
 $size = '320x240';
//ffmpeg command
 $command = $ffmpeg.' -i '.$video_temp_path.' -deinterlace -an -ss '.$interval.' -f mjpeg -t 1 -r 1 -y -s '.$size.' '.$image.' 2>&1';

 exec($command, $array);