
Recherche avancée
Autres articles (48)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
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 (5891)
-
Evolution #3103 (Nouveau) : Découpage des fichiers de langue du core en groupes logiques
27 novembre 2013, par Suske -Les fichiers de langue de SPIP-core sont au nombre de 3 : ecrire_xx.php, public_xx.php et spip_xx.php
Ce découpage historique n’est plus très pertinent ni le plus efficace pour les traducteurs (et dans une perspective de réemploi des chaînes).
Un exemple de "groupement logique" serait de créer un fichier dates_xx.php qui permettrait de gérer spécifiquement le casse-tête des traductions de dates...
Voir http://thread.gmane.org/gmane.comp.web.spip.devel/64720
-
Raspberry Pi : Playing multiple video files in mkfifo pipe
19 janvier 2017, par user3246167I have 2 files, test.mp4 and test2.mp4 that I want to play concurrently with no noticeable break in the middle. Currently I’m using
mkfifo test
cat test.mp4 > test &
cat test2.mp4 > test &
omxplayer testHowever, when I do this, omxplayer just returns data and doesn’t play the file. But if I just put a single file into the pipe, omxplayer shows it normally. I’ve also tried using the copy command in ffmpeg, and that also just returns data, doesn’t play the file.
I understand that I can just concatenate the 2 files together, but that will not work for my purposes, because I will need to be able to feed files to the pipe while omxplayer is running
-
FFmpeg and h264_qsv
16 juin 2015, par Dmitry VasilyevI use Intel Quick Sync encoder inside FFmpeg for h264 RTSP streaming.
find_hwaccel
method from utilc.c is used for filling hwaccel structure.libx264
encoder is working withAV_PIX_FMT_RGB24
orAV_PIX_FMT_NV12
formats. Buth264_qsv
requiresAV_PIX_FMT_QSV
.Method
vpicture_get_size(AV_PIX_FMT_NV12, width, height)
returns correct size. But methodvpicture_get_size(AV_PIX_FMT_QSV, width, height)
returns -22
In addition, methodavcodec_encode_video2
crashes when context is filled withAV_PIX_FMT_QSV
format.What is the reason of such behavior ?