
Recherche avancée
Autres articles (38)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (5596)
-
Having issues compiling ffmpeg 0.11.1 for iPhone
1er août 2012, par ron garayI'm only asking this because I've successfully built previous versions of ffmpeg. Currently I use 0.10.2 since 0.11.1 fails.
This is the errors I get when compiling 0.11.1
CC libavcodec/arm/h264dsp_init_arm.o
CC libavcodec/arm/h264pred_init_arm.o
Unable to identify target architecture at /usr/bin/gas-preprocessor.pl line 82.
CC libavcodec/arm/mpegaudiodsp_init_arm.o
AS libavcodec/arm/jrevdct_arm.o
CC libavcodec/arm/mpegvideo_arm.o
libavcodec/arm/jrevdct_arm.S:72:garbage following instruction — `ldr r11,.Lpicoff\'
libavcodec/arm/jrevdct_arm.S:73:Unknown pseudo-op : .Lpic
libavcodec/arm/jrevdct_arm.S:73:Rest of line ignored. 1st junk character valued 92 ().
libavcodec/arm/jrevdct_arm.S:75:Unknown pseudo-op : .altmacro
libavcodec/arm/jrevdct_arm.S:76:Unknown pseudo-op : .noaltmacro
make : * [libavcodec/arm/jrevdct_arm.o] Error 1I would want either of these :
1)Fix this issue an compile ffmpeg for armv7
2)Know what I have to put in a script to ensure I'm downloading ffmpeg 0.10.2Thank You
-
HLS Content Throwing 403 Errors on iPhone Indeterminately [closed]
10 août 2023, par Shishir JakatiI am facing an issue with video content that I have converted to HLS playlist content (using ffmpeg) added to an S3 bucket that is shared through a Cloudfront Distribution. My scenario is the following :


I have a bucket called
bucket-a
, with a "folder"video-1
which contains the following files :

- 

- output.m3u8
- output0.ts
...
- output15.ts
- audio/

- 

- audio.aac




- image.jpg














All items in
bucket-a
are blocked from public access through S3. Content is only vended through a Cloudfront distribution which has originbucket-a
. I am able to accesshttps://<distro>.cloudfront.net/path/output.m3u8</distro>
on a desktop browser without fail, and no errors thrown. But the file output.m3u8 and all .ts files are not available on iPhone mobile browsers. The part that is peculiar is that this is not true for all playlist content inbucket-a
. For example, I have a "folder"video-2
withinbucket-a
that has the same file structure asvideo-1
that is completely accessible through all mobile browsers.

Here is an example master playlist error : https://dbs3s11vyxuw0.cloudfront.net/bottle-promo/script_four/output.m3u8


Even more head-scratching is that I am able to access all the playlists that are within this playlist.


What I've tried :


- 

- Initially, I believed the issue to be due to the way the video was transcoding so I standardized the video transcoding.
- Then I believed the issue to be due to CloudFront permissions, though those seem to be fine.
- I've validated my stream here : https://ott.dolby.com/OnDelKits_dev/StreamValidator/Start_Here.html








Not sure which way to turn.


-
ffmpeg using downloaded google font
10 juin 2021, par ekatoI am using the following code to hardsub the video and it works perfectly.


ffmpeg -i "pure.mkv" -lavfi "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18'" -c:a copy "output.mkv"



I would like to use a google font link, I am using the following code, but the subtitle font is still the original one.


ffmpeg -i "pure.mkv" -vf "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18,fontfile="c\:\\Users\\...\\Bfont.ttf"'" -c:a copy "output.mkv"



I have totally no idea what could be the problem.