
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (64)
-
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 -
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 (...) -
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 (...)
Sur d’autres sites (6268)
-
Debugging Video Frame Differences
14 mai 2014, par jvenemaI’m trying to decode an h264-encoded video frame using a decoder that has fairly limited capabilities (Broadway JS).
Here’s the process I’m using for testing :
- Encode single image using h264 (output is 62KB) using OpenH264 from Cisco, write to disk
- Read file as binary in JS (loaded via XHR)
- Decode in JS using Broadway
- Display in canvas
I actually have a functional example of this, but there’s a manual step at the moment between steps 1 and 2 - I have to call FFMPEG to force a small translation, and I can’t figure out why.
I have successfully integrated Cisco’s Openh264 library into my project, and can encode the image as h264 and write it to disk. I’ve confirmed the encoding itself is valid by using FFMPEG to extract the frame back out as a JPEG (looks perfect).
But, to make the frame decode properly in JS, I have to do a conversion using FFMPEG. It does some magic, the file size drops to 58KB, and voila, everything starts working.
The Openh264 libraries only work with the baseline configuration, so I’m assuming I have some other random parameter set incorrectly. Problem is, if I use ffprobe to compare the frames - the settings are identical ! But the file sizes are different, so obviously something is different.
So now the final question - what tool can I use to truly see what FFMPEG is doing behind the scenes here to make my "manually" encoded frame work ? Is there a tool that will let me compare all the details of two h264 frames ?
-
Evolution #3123 (Nouveau) : #URL_ARTICLE et articles de redirection
20 décembre 2013, par realet RealETActuellement, #URL_ARTICLE génère l’URL de l’article, et c’est le moteur de SPIP qui au moment de charger la page détecte que c’est une redirection et la fait.
Ce serait sans doute plus pertinent si #URL_ARTICLE générait directement l’URL de redirection.
Autre formulation lue sur IRC : « c’est possible que l’URL des articles virtuels soit directement l’URL finale ? »Cette demande a initié une grosse discussion ici : http://thread.gmane.org/gmane.comp.web.spip.devel/57112
Un des manques relevé est que SPIP fait une redirection 302 (temporaire) et qu’on ne peut pas faire de redirection 301 (permanente).
-
Php exec ffmpeg not running in background
12 décembre 2013, par mirceaI am trying to start a ffmpeg process from a php script and I know it has been asked a lot of times but I tried many solutions and none of them seem to work, each time the php script never finishes unless I kill the ffmpeg process. At the moment I am using this script which indeed starts ffmpeg and writes info in the designated files but the php script is loading forever.
What am I missing ?
$cmd = 'cd cache && ffmpeg -y -i "rtsp://stream" -r 20 -f image2 a%6d.jpg >/dev/null 2>/dev/null &';
exec(sprintf("%s > %s 2>&1 & echo $! >> %s", $cmd, 'log.txt', 'error.txt' . '.pid'));A little more info : I am running FFMpeg 0.6.5, PHP 5.3.3 on CentOS 6.5
Thank you for your time !