下記のようなyoutubeのリンクがあります。
python
1https://youtu.be/aYx-uC0jcE
これを以下のように修正したいです。
python
1<iframe width="560" height="315" src="https://www.youtube.com/embed/aYx-uC0jqcE" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
これをreplaceを使い、再現したいのですが、上手くいきません。良い方法があれば教えていただきたいです。
よろしくお願いします。
追加
python
1@register.filter 2def youtube_embed_url(content): 3 return re.sub('https://youtu.be/[a-zA-Z0-9_]', 4 '<iframe width="560" height="315" src="https://www.youtube.com/embed/[a-zA-Z0-9_]" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>', 5 content)
正規表現を使い、URLから埋め込みコードへの変換を試みたのですが、うまく行かずに悩んでいます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/10/30 14:14
2020/10/30 14:17
退会済みユーザー
2020/10/30 14:34
退会済みユーザー
2020/10/30 23:54