Custom field and displaying video

Post Reply
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

Hi all,

Any idea why I got that error message trying to play a mp4 file ?

https://ibb.co/hZSVcQ4

I followed to the letter the doc. and I could make it work with a YouTube video. I replaced the <iframe> with <video> of course within the parser.

WBR,

Q
Last edited by lesmegeres on Mon Sep 11, 2023 8:36 am, edited 3 times in total.
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Can you please post the whole code.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

Hi and thanks for your request,

So here is the plugin parser :

Code: Select all

<video width="560" height="315" controls>
    <source src="{{ value }}" type="video/mp4">
    <source src="/bl-content/uploads/video.webm" type="video/webm">
    <p>
    Votre navigateur ne prend pas en charge les vidéos HTML5. Voici
    <a href="{{ value }}">un lien pour télécharger la vidéo</a>.
  </p>
</video>
Here is the custome field in JSON format within general parameters :

Code: Select all

{
    "video": {
        "type": "string",
        "placeholder": "Chemin vers la vid\u00e9o",
        "label": "Vid\u00e9o \u00e0 inclure"
    }
}
The code in the page to display the video :

Code: Select all

Voilà ce que donnera l'inclusion vidéo (quand ça fonctionnera ;)):

{{ video }}
Finally, here is the {{ value }} declared in new customer field added into page Options :

https://ibb.co/99sfSnZ

The url is : https://lesmegeresdelhumus/bl-content/uploads/video.mp4.

WBR,

Q
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

Hi,

Mime types video declared within /etc/nginx/mime.types are :

https://ibb.co/37GZKkd

Q
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

Works locally but not on my online site.
Page with video is Spectacles.
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

lesmegeres wrote: Sun Sep 10, 2023 12:14 pm Page with video is Spectacles.
?

The domain https://lesmegeresdelhumus does not work. :cry:
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

Hi,

Sorry just a typo.

Blog is https://lesmegeresdelhumus.fr/.

WBR,

Q
lesmegeres
Sr. Bludit
Posts: 30
Joined: Wed Jul 19, 2023 6:51 pm
Location: Paris - France
Has thanked: 3 times
Been thanked: 2 times
Contact:

All links

Code: Select all

<src>
have been rewritten as : /bl-content/uploads/'videofile', etc.
Post Reply